@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;
	--base-inverse-color: #525153;
	--primary-color: #7A5123;
	--primary-inverse-color: #fff;
	--warning-color: #ff6b35;
	--warning-dark: #d63e14;
	--content-space: 2rem;
}

@media screen and (min-width:900px) {
	:root {
		--content-space: 4rem;
	}
}

/*animation1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}

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

/*jump1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes jump1 {
  0%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  90% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 14px;
}

@media screen and (min-width:900px) {
	html, body {
		font-size: 15px;
	}
}

body {
	margin: 0;padding:0;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--base-color);
	color: var(--base-inverse-color);
	line-height: 2;
	overflow-x: hidden;
}

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

/*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: var(--content-space) 0;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 0.2s 0.4s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 0 var(--content-space);
}

/*=============================================================================
警告バナー（転売注意）- 新規追加
=============================================================================*/
#warning-banner {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-dark) 100%);
	color: #fff;
	padding: 0.8rem 1rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
	animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.warning-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.warning-content i.fa-exclamation-triangle {
	font-size: 1.5rem;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

.warning-text {
	flex: 1;
	font-size: 0.9rem;
	min-width: 200px;
}

.warning-text strong {
	font-weight: 700;
}

.warning-link {
	background: rgba(255,255,255,0.2);
	padding: 0.5rem 1.2rem;
	border-radius: 20px;
	text-decoration: none;
	font-size: 0.85rem;
	white-space: nowrap;
	border: 1px solid rgba(255,255,255,0.3);
	transition: all 0.3s;
}

.warning-link:hover {
	background: rgba(255,255,255,0.3);
	transform: translateX(3px);
}

@media screen and (max-width:600px) {
	.warning-content {
		font-size: 0.85rem;
	}
	
	.warning-content i.fa-exclamation-triangle {
		font-size: 1.2rem;
	}
	
	.warning-link {
		width: 100%;
		text-align: center;
	}
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	padding: var(--content-space) 0;
}

@media screen and (max-width:400px) {
	header {
		padding-top: calc(var(--content-space) + 70px);
	}
}

/*ロゴ*/
#logo {margin: 0;padding: 0;}
#logo img {
	display: inline-block;
	width: 250px;
}

/*ヘッダー右側の「Online Shop」のボックス
---------------------------------------------------------------------------*/
#header-box * {margin: 0;padding: 0;}

#header-box {
	list-style: none;
	position: fixed;
	z-index: 101;
	right: 70px;
	top: 0px;
	height: 70px;
	display: flex;
}

#header-box a {
	display: flex;text-decoration: none;
	height: 100%;
	align-items: center;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: 0 2rem;
}

/*mainimg（4枚構成の横スライドショー）
---------------------------------------------------------------------------*/
#mainimg-box h2 {
	font-size: 6vw;
	line-height: 1.6;
	font-weight: 200;
	position: relative;
	display: inline-block;
	padding: 1rem 3rem;
}

#mainimg-box h2 span {
	color: var(--primary-color);
}

#mainimg-box h2::before,
#mainimg-box h2::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 50px;
	border: 1px solid var(--base-inverse-color);
}

#mainimg-box h2::before {
	top: 0px;
	left: 0px;
	border-right: none;
	border-bottom: none;
}

#mainimg-box h2::after {
	bottom: 0px;
	right: 0px;
	border-left: none;
	border-top: none;
}

#mainimg {
	overflow-x: hidden;
	position: relative;
	background: linear-gradient(transparent 20%, var(--primary-color) 20%);
	color: var(--primary-inverse-color);
}

#mainimg .img {
	display: flex;
}

#mainimg .img img {
	padding: 0 1vw;
}

#mainimg .img + p.c {
	padding: 2rem;
	font-size: 1.4rem;
}

.caveat {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

#mainimg .rtl, #mainimg .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

#mainimg .rtl {animation-name: slide-rtl;}
#mainimg .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
	0% {transform: translateX(0);}
	100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
	0% {transform: translateX(-50%);}
	100% {transform: translateX(0);}
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
}

#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}

/*main
---------------------------------------------------------------------------*/
main h2 {
	font-weight: 500;
	font-size: 1.8rem;
}

/*メッセージブロック
---------------------------------------------------------------------------*/
.message {
	line-height: 3;
}

@media screen and (min-width:700px) {
	.message {
		text-align: center;
	}
}

/*btn5（ボタン）
---------------------------------------------------------------------------*/
.btn5-container {
	position: relative;
	margin-top: 40px;
}

a.btn5 {
	text-decoration: none;display: inline-block;
	background: linear-gradient(#aba9de, var(--primary-color));
	color: #fff;
	padding: 1rem 3rem;
	font-size: 1.3rem;
	border-radius: 5px;
}

a.btn5:hover {
	transform: scale(1.02);
}

.btn5-container .fukidasi {
	background: #fff;
	border: 2px solid var(--primary-color);
	padding: 0.2rem 2rem;
	border-radius: 100px;
	position: absolute;
	top: -30px;
    left: 50%;
    transform: translateX(-50%);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
	animation: jump1 2s infinite;
}

.btn5-container .fukidasi::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(315deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.btn5.border-radius {
	border-radius: 100px;
}

/*「商品ラインナップ」ブロック
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

.list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media screen and (min-width:800px) {
	.list-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.list-grid .list {
    display: grid;
	position: relative;
    grid-template-rows: auto 1fr;
	overflow: hidden;
}

.list-grid .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}

/*アイコン（「NEW」や「UP」）
---------------------------------------------------------------------------*/
.list-grid .icon-bg1,
.list-grid .icon-bg2 {
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 0.85rem;
	width: 10rem;
	padding-top: 2rem;
	text-align: center;
	transform: rotate(-45deg) translate(-2.4rem,-3rem);
	box-shadow: 0px 5px #fff;
}

.list-grid .icon-bg1 {
	background: #DA8B06;
	color: #fff;
}

.list-grid .icon-bg2 {
	background: #B74605;
	color: #fff;
}

/*=============================================================================
購入先カード型レイアウト - 新規追加
=============================================================================*/

/* 購入先セクションのメイン見出し */
#shops > h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 2.5rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid var(--primary-color);
	position: relative;
}

#shops > h2::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: var(--warning-color);
}

@media screen and (max-width:600px) {
	#shops > h2 {
		font-size: 1.8rem;
	}
}

/* カテゴリー全体 */
.shop-category {
	margin-bottom: 3rem;
}

.shop-category-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.shop-category-title i {
	font-size: 1.1rem;
}

/* 実店舗カードグリッド */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
	margin-bottom: 1rem;
}

@media screen and (max-width:600px) {
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8rem;
	}
}

@media screen and (max-width:400px) {
	.shop-grid {
		grid-template-columns: 1fr;
	}
}

/* 実店舗カード */
.shop-card {
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 1.2rem;
	text-align: center;
	transition: all 0.3s;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.shop-card:hover {
	border-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(122,81,35,0.15);
	transform: translateY(-3px);
}

.shop-icon {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 0.8rem;
}

.shop-card h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0.5rem 0;
	line-height: 1.4;
	min-height: 2.8em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-location {
	font-size: 0.8rem;
	color: #888;
	margin: 0;
	padding-top: 0.3rem;
	border-top: 1px solid #f0f0f0;
}

/* ECサイトカードグリッド */
.ec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

@media screen and (max-width:600px) {
	.ec-grid {
		grid-template-columns: 1fr;
	}
}

/* ECサイトカード */
.ec-card {
	background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: all 0.3s;
	position: relative;
	box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.ec-card:hover {
	background: linear-gradient(135deg, var(--primary-color) 0%, #8b6333 100%);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(122,81,35,0.3);
}

.ec-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	transition: all 0.3s;
}

.ec-card:hover .ec-icon {
	color: #fff;
	transform: scale(1.1);
}

.ec-card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.3rem 0;
}

.ec-platform {
	font-size: 0.85rem;
	color: #666;
	margin: 0;
	transition: color 0.3s;
}

.ec-card:hover .ec-platform {
	color: rgba(255,255,255,0.9);
}

.ec-link-icon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
	opacity: 0.5;
	transition: all 0.3s;
}

.ec-card:hover .ec-link-icon {
	opacity: 1;
	transform: translateY(-50%) translateX(5px);
}

/* 注意書き */
.shop-notice {
	text-align: center;
	font-size: 0.9rem;
	color: #666;
	margin-top: 2rem;
	padding: 1rem;
	background: #f9f9f9;
	border-radius: 5px;
	border-left: 4px solid var(--primary-color);
}

.shop-notice i {
	margin-right: 0.5rem;
	color: var(--primary-color);
}

/*=============================================================================
転売注意セクション - 新規追加
=============================================================================*/

.warning-section {
	background: linear-gradient(to bottom, #fff9f5 0%, #fff 100%);
	padding: 3rem var(--content-space);
	border-radius: 10px;
	margin: 2rem 0;
}

.warning-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.warning-header i {
	font-size: 2.5rem;
	color: var(--warning-color);
	animation: pulse 2s infinite;
}

.warning-header h2 {
	margin: 0;
	color: var(--warning-dark);
}

.warning-box {
	background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-dark) 100%);
	color: #fff;
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 5px 20px rgba(255,107,53,0.3);
	position: relative;
	overflow: hidden;
}

.warning-box::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200px;
	height: 200px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
}

.warning-box-content {
	position: relative;
	z-index: 1;
}

.warning-box h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.warning-box p {
	margin: 0;
	line-height: 1.8;
}

.warning-box strong {
	font-weight: 700;
	text-decoration: underline;
}

.warning-section .text dl dt {
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.warning-section .text dl dd {
	line-height: 1.8;
	padding-left: 1.5rem;
	color: #555;
}

@media screen and (max-width:600px) {
	.warning-header {
		flex-direction: column;
	}
	
	.warning-box {
		padding: 1.5rem;
	}
}

/*スライドアップの装飾画像
---------------------------------------------------------------------------*/
.bg-slideup {
    background-image: url("../images/6.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
	height: 50vh;
	border-radius: 0px 15vw 0px 15vw;
}

/*「お客様の声」ブロック
---------------------------------------------------------------------------*/
.list-yoko-scroll * {margin: 0; padding: 0;}

.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.list-yoko-scroll::-webkit-scrollbar {
    display: none;
}

.list-yoko-scroll .list {
	width: 60%;
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 0 2rem;
	position: relative;
	display: flex;
	flex-direction: column;
}

@media screen and (min-width:600px) {
	.list-yoko-scroll .list {
		width: 28%;
	}
}

.list-yoko-scroll figure {
	width: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1rem;
}

.list-yoko-scroll h4 {
	text-align: center;
}

.list-yoko-scroll .text {
	flex: 1;
	font-size: 0.85rem;
	line-height: 1.5;
}

/*２カラムレイアウト用（お知らせブロック用）
---------------------------------------------------------------------------*/
.news-c2 * {margin: 0;padding: 0;}

.news-c2 .title {
	margin-bottom: 2rem;
	text-align: center;
}

@media screen and (min-width:600px) {
	.news-c2 {
		display: flex;
		gap: 2rem;
	}

	.news-c2 .title {
		margin-bottom: 0;
		text-align: left;
		width: 30%;
	}

	.news-c2 .text {
		flex: 1;
	}
}

/*お知らせブロック
---------------------------------------------------------------------------*/
.news dd {
	padding-bottom: 1rem;
}

.news dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;
	padding: 0 1rem;
	width: 8rem;
	transform: scale(0.8);
	background: #fff;
	color:#777;
	border: 1px solid #999;
}

.news .icon-bg1 {
	border-color: transparent;
	background: #cd0000;
	color: #fff;
}

.news .icon-bg2 {
	border-color: transparent;
	background: #006acd;
	color: #fff;
}

@media screen and (min-width:700px) {
	.news {
		display: grid;
		grid-template-columns: auto 1fr;
	}
}

/*list-c2（お問い合わせ、オンラインショップ）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

@media screen and (min-width:600px) {
	.list-c2 {
		display: flex;
	}
}

.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;
	padding: 5rem 2rem;
	margin: 1rem 0;
}

@media screen and (min-width:600px) {
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}
}

.list-c2 .list.image1 {
	background: url("../images/1.jpg") no-repeat center center / cover;
}

.list-c2 .list.image2 {
	background: url("../images/2.jpg") no-repeat center center / cover;
}

.list-c2 h4 {
	font-weight: 200;
	line-height: 1.2;
}

.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;
	padding-top: 1.5rem;
	padding-bottom: 3rem;
}

@media screen and (min-width:600px) {
	.list-c2 h4 .main-text {
		font-size: 4rem;
	}
}

.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;
}

.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;
	border-top: 1px solid #fff;
}

.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;
}

.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);
	transition: transform 0.3s 0.1s;
}
.list-c2 .list:hover::before {
	transform: translateY(100%);
}

/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

footer {
	background: #222;
	color: #ccc;
	padding: var(--content-space);
}

footer .logo {
	width: 300px;
}

footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

footer div.footer2 {
    flex: 1;
}

@media screen and (min-width:700px) {
	footer {
		display: flex;
		gap: 2rem;
	}

	footer div.footer1 {
		text-align: left;
		width: 40%;
	}
}

/*SNSアイコン
---------------------------------------------------------------------------*/
.sns1 {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.sns1 i {
	font-size: 30px;
}

/*Google Map用
---------------------------------------------------------------------------*/
.iframe-box1 {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;
	position: relative;
	overflow: hidden;
}
.iframe-box1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	font-size: 0.85rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#footermenu a {
	text-decoration: none;
	color: inherit;
	opacity: 0.6;
}

#footermenu a:hover {
	opacity: 1;
}

#footermenu ul {
	margin: 0;list-style: none;
	padding: 0 2px;
	flex: 1;
}

#footermenu .title {
	font-weight: bold;
	padding-bottom: 5px;
}
#footermenu li + .title {
	margin-top: 1.5rem;
}

/*著作部分
---------------------------------------------------------------------------*/
.pr * {margin: 0;padding: 0;}
.pr a {
	text-decoration: none;display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}

/*ポップアップ
---------------------------------------------------------------------------*/
#popup * {margin: 0;padding: 0;}

#popup {
	display: none;
	font-size: 0.9rem;
	padding: 1rem 2rem;
	position: fixed;z-index: 1001;
	right: 30px;
	bottom: 100px;
	width: 300px;
	background: #fff;
	color: #555;
	border: 3px solid #333;
	border-radius: 10px;
	overflow: hidden;
}

#popup .close-btn {
	display: block;
	width: 50px;
	line-height: 50px;
	text-align: center;
	position: absolute;
	right: 0px;
	top: 0px;
	background: #ff0000;
	color: #fff;
	cursor: pointer;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
	background: #0e211f;
	transform-origin: right top;
	transform: scale(1);
}

#menubar_hdr.ham {
	background: #ff0000;
}

#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;
	background: #fff;
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

.small-screen #menubar_hdr {
	display: flex;
}

/*開閉メニュー
---------------------------------------------------------------------------*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 70%;
	height: 100%;
	padding: 100px var(--content-space) 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

.small-screen #menubar {display: none;}

.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
}

.small-screen #menubar ul ul a {
	border: none;
	padding: 0;
    margin-left: 3.8rem;
}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	content: "\f078";
	margin-right: 0.3em;
	transform: scale(0.7);
	display: inline-block;
}
a.ddmenu {cursor: default;}

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

.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;
	right: 20px;
	bottom: 50px;
	font-size: 1.5rem;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}

/*svgアニメーション（大きな背景ラインアニメーション）
---------------------------------------------------------------------------*/
#kazari1 {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
	stroke: #fff;
	stroke-width: 30;
	width: 100%;
}

/*bg1背景色（「お客様の声」ブロックで使用）
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

/*sectionの両サイドの余白を相殺するスタイル
---------------------------------------------------------------------------*/
.margin-lr0 {
	margin: 0 calc(-1 * var(--content-space));
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !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: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

@media screen and (min-width:900px) {
	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
}

/* ポップアップ追加スタイル */
#popup {
	width: 320px;
	background: #fff;
	padding: 15px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
	border-radius: 8px;
	z-index: 9999;
	font-size: 14px;
}

.popup-img {
	width: 100%;
	margin: 10px 0;
}

.popup-btn {
	display: inline-block;
	background: #c40000;
	color: #fff;
	padding: 8px 15px;
	margin-top: 10px;
	text-decoration: none;
	border-radius: 4px;
}

.close-btn {
	position: absolute;
	top: 5px;
	right: 8px;
	cursor: pointer;
	font-size: 18px;
}

/* FAQセクション用 */
.faq dt {
	font-weight: 600;
	margin-top: 1rem;
}

.faq dd {
	margin-bottom: 1rem;
	line-height: 1.8;
}

/* btn3ボタン */
.btn3 {
	text-align: center;
	margin-top: 2rem;
}

.btn3 a {
	display: inline-block;
	padding: 1rem 3rem;
	background: var(--primary-color);
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s;
}

.btn3 a:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn3.white a {
	background: #fff;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

/* 記事画像の中央配置 */
.article-images {
	text-align: center;
}

.article-images p {
	margin-bottom: 1rem;
}

.article-images img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 600px) {
	.article-images img {
		width: 100%;
	}
}

/* YouTube動画のレスポンシブ対応 */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin: 2rem auto;
}

@media screen and (min-width: 900px) {
	.video-container {
		max-width: 50%;
	}
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

#youtube {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

@media screen and (max-width: 600px) {
	.video-container {
		margin: 1rem 0;
	}
}

/* チョコレートグループ全体 */
.chocolate-group {
  grid-column: span 2;  /* スマホ: 2列分 */
}

@media screen and (min-width:800px) {
  .chocolate-group {
    grid-column: span 4;  /* PC: 4列分（全幅） */
  }
}

/* バリエーション表示 */
.choco-variations {
  grid-template-columns: 1fr;  /* スマホ: 1列 */
}

@media screen and (min-width:600px) {
  .choco-variations {
    grid-template-columns: repeat(2, 1fr);  /* PC: 2列 */
  }
}

/* 各バリエーション */
.variation {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}
