/* ==========================================================================
   1. 変数定義とリセット（極上のクワイエット・ラグジュアリー仕様）
   ========================================================================== */
:root {
	--color-bg: #FCFBF9;
	/* 生成り（エクリュ）：温かみがあり高貴な背景色 */
	--color-text: #2B2B2B;
	/* 炭黒：漆黒ではなく、目に優しい高貴な黒 */
	--color-primary: #4F5D51;
	/* 常盤緑（フォレストセージ）：深みのある知的なセージグリーン */
	--color-accent: #8E7A68;
	/* 温木（ウッドトープ）：上品で温かみのあるアースブラウン */
	--color-gold: #B8975E;
	/* 銘金（アンティークゴールド）：本物感を引き立たせる落ち着いた金箔色 */
	--color-border: #EFECE7;
	/* 境界線ベージュ */

	--base-font-size: 14.5px;
	/* 表示量を増やし、余白の美しさを際立たせるサイズ */
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Serif JP', serif;
	font-size: var(--base-font-size);
	line-height: 1.85;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
	/* スマホメニュー展開時に背面のスクロールをロック */
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.container {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 4%;
}

.container-full {
	max-width: 100%;
	padding: 0 4%;
}

.text-center {
	text-align: center;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

/* ==========================================================================
   2. ヘッダー（PC版左上ナビ・中央ロゴ・右上楽天市場リンクの究極シンメトリー）
   ========================================================================== */
.site-header {
	background-color: rgba(252, 251, 249, 0.95);
	backdrop-filter: blur(10px);
	padding: 18px 0;
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	/* 左上・中央・右上の黄金比グリッド */
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 4%;
}

/* [左上] ナビゲーション一覧（PC版左上のメニュー一覧） */
.pc-nav {
	justify-self: start;
}

.pc-nav ul {
	display: flex;
	list-style: none;
	gap: 24px;
}

.pc-nav a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
	position: relative;
	padding-bottom: 3px;
}

.pc-nav a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: var(--color-gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pc-nav a:hover {
	color: var(--color-text);
}

.pc-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* [中央] ブランドロゴ */
.site-logo {
	justify-self: center;
}

.logo-img {
	height: 24px;
	display: block;
}

/* [右上] 楽天市場へのエレガントな直結ボタン */
.header-right-action {
	justify-self: end;
}

.btn-header-rakuten {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--color-gold);
	border: 1px solid var(--color-gold);
	padding: 6px 16px;
	border-radius: 2px;
	background-color: transparent;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-rakuten:hover {
	background-color: var(--color-gold);
	color: var(--color-bg);
}

/* スマホ用メニューボタン（初期状態は非表示） */
.menu-trigger {
	display: none;
}

/* ==========================================================================
   3. スマホ・PC共通：極上デザインハンバーガーメニュー＆高貴なスライドメニュー
   ========================================================================== */
.menu-trigger {
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 200;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(142, 122, 104, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	background-color: var(--color-bg);
}

.menu-trigger:hover {
	border-color: var(--color-gold);
	transform: scale(1.05);
}

.bar {
	display: block;
	width: 18px;
	height: 1px;
	background-color: var(--color-text);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: absolute;
}

.bar-top {
	transform: translateY(-4px);
}

.bar-mid {
	opacity: 1;
}

.bar-bottom {
	transform: translateY(4px);
}

/* 開閉時のラグジュアリーな変形アニメーション */
.menu-trigger.active {
	border-color: var(--color-gold);
}

.menu-trigger.active .bar-top {
	transform: translateY(0) rotate(45deg);
	background-color: var(--color-gold);
}

.menu-trigger.active .bar-mid {
	opacity: 0;
}

.menu-trigger.active .bar-bottom {
	transform: translateY(0) rotate(-45deg);
	background-color: var(--color-gold);
}

/* 優雅なガラスボケ（グラスモルフィズム）を施したフルスクリーンメニュー */
.sp-overlay-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(252, 251, 249, 0.96);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	z-index: 150;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sp-overlay-menu.open {
	opacity: 1;
	visibility: visible;
}

.sp-nav ul {
	list-style: none;
	text-align: center;
}

.sp-nav li {
	margin: 30px 0;
	opacity: 0;
	transform: translateY(25px);
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-overlay-menu.open .sp-nav li {
	opacity: 1;
	transform: translateY(0);
}

/* リンク展開の美しい時間差（スタッガー効果） */
.sp-overlay-menu.open .sp-nav li:nth-child(1) {
	transition-delay: 0.1s;
}

.sp-overlay-menu.open .sp-nav li:nth-child(2) {
	transition-delay: 0.18s;
}

.sp-overlay-menu.open .sp-nav li:nth-child(3) {
	transition-delay: 0.26s;
}

.sp-overlay-menu.open .sp-nav li:nth-child(4) {
	transition-delay: 0.34s;
}

.sp-menu-link {
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0.15em;
	color: var(--color-text);
	display: block;
	position: relative;
	padding: 5px 0;
}

.sp-menu-link small {
	display: block;
	font-size: 11px;
	color: var(--color-gold);
	letter-spacing: 0.1em;
	margin-top: 4px;
	font-weight: 400;
}

/* ==========================================================================
   4. ヒーローバナー＆コンセプト（絶対に見切れないアスペクト比自動維持）
   ========================================================================== */
.hero-section {
	padding: 15px 0;
}

.hero-image-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

.hero-img {
	width: 100%;
	height: auto;
	/* 高さを自動にして絶対に見切れないように */
	display: block;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(184, 151, 94, 0.04);
}

.concept-section {
	padding: 60px 0;
	text-align: center;
}

.concept-sub {
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--color-gold);
	/* ゴールドで格調高く */
	margin-bottom: 12px;
	font-weight: 700;
}

.concept-title {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 25px;
	letter-spacing: 0.05em;
}

/* タイトル下の美しい飾り線 */
.concept-title::after {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--color-gold), transparent);
	margin: 15px auto 0 auto;
}

.concept-lead {
	font-size: 15.5px;
	font-weight: 500;
	margin-bottom: 25px;
	color: var(--color-primary);
}

.concept-body {
	max-width: 620px;
	margin: 0 auto;
}

.concept-text {
	font-size: 14px;
	color: #555555;
	line-height: 1.9;
	margin-bottom: 15px;
	text-align: left;
}

/* ==========================================================================
   5. 商品コレクション（4シーズン・2行スワイプ・商品名3行完全対応）
   ========================================================================== */
.collection-section {
	padding: 60px 0;
	background-color: #F5F2EC;
}

.season-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

/* タブボタンの上品な輪郭 */
.tab-btn {
	background-color: var(--color-bg);
	border: 1px solid var(--color-accent);
	color: var(--color-accent);
	padding: 7px 18px;
	font-size: 12px;
	cursor: pointer;
	border-radius: 3px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn.active {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-bg);
	box-shadow: 0 4px 10px rgba(79, 93, 81, 0.15);
}

.season-content {
	display: none;
}

.season-content.active {
	display: block;
}

/* 季節ごとのバナーを上部に配置（完全自動比率調整） */
.season-banner-wrapper {
	max-width: 1000px;
	margin: 0 auto 25px auto;
	padding: 0 15px;
	text-align: center;
}

.season-banner-img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 6px 15px rgba(142, 122, 104, 0.05);
}

/* 2行横スクロールを実現するための Grid */
.product-scroll-container {
	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-auto-flow: column;
	grid-auto-columns: 210px;
	gap: 15px;
	overflow-x: auto;
	padding: 5px 15px 20px 15px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.product-card {
	background-color: var(--color-bg);
	padding: 12px;
	border-radius: 6px;
	text-align: center;
	scroll-snap-align: start;
	border: 1px solid var(--color-border);
	box-shadow: 0 4px 12px rgba(184, 151, 94, 0.02);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(184, 151, 94, 0.08);
}

.product-img-wrapper {
	width: 100%;
	height: 170px;
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 10px;
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
	transform: scale(1.04);
}

.product-img-placeholder {
	width: 100%;
	height: 100%;
	background-color: #EFECE7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	font-size: 11px;
}

/* ★ 商品名：しっかり 3行入る絶妙な高さ設定 */
.product-name {
	font-size: 12.5px;
	font-weight: 500;
	margin-bottom: 6px;
	line-height: 1.45;
	height: 55px;
	/* 3行を美しく収めるための黄金の高さ */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-price {
	font-size: 13px;
	color: var(--color-accent);
	margin-bottom: 10px;
	font-weight: 700;
}

.tax-info {
	font-size: 10px;
	font-weight: 400;
}

.btn-rakuten {
	display: block;
	width: 100%;
	padding: 8px 0;
	background-color: var(--color-primary);
	color: var(--color-bg);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 4px;
}

.btn-rakuten:hover {
	background-color: var(--color-text);
}

/* ==========================================================================
   6. 店舗情報（ラグジュアリーな画像付き・縦2行・横スワイプスクロール）
   ========================================================================== */
.shop-section {
	padding: 60px 0;
	background-color: var(--color-bg);
}

/* 店舗情報を「縦2行」の「横スクロール」にするグリッド設計 */
.shop-scroll-container {
	display: grid;
	grid-template-rows: repeat(2, auto);
	/* 縦2行 */
	grid-auto-flow: column;
	/* 横に自動で並べる */
	grid-auto-columns: 290px;
	/* カード1枚の上品な横幅 */
	gap: 18px;
	overflow-x: auto;
	padding: 10px 15px 25px 15px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.shop-card {
	background-color: #F5F2EC;
	border-radius: 6px;
	scroll-snap-align: start;
	border: 1px solid var(--color-border);
	position: relative;
	box-shadow: 0 4px 10px rgba(184, 151, 94, 0.02);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* 店舗のラグジュアリー画像（自動比率＆ズーム対応） */
.shop-card-img-wrapper {
	width: 100%;
	height: 120px;
	/* カードに収まりやすいスマートな高さ */
	overflow: hidden;
	position: relative;
}

.shop-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card:hover .shop-card-img {
	transform: scale(1.04);
}

.shop-card-body {
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.shop-card-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	border-bottom: 1px solid #D5CECE;
	padding-bottom: 6px;
	margin-bottom: 5px;
	padding-right: 35px;
	/* 本店タグと重ならないように */
}

.shop-card-address,
.shop-card-tel,
.shop-card-hours {
	font-size: 11.5px;
	line-height: 1.5;
	color: #555555;
}

.shop-card-address {
	height: 35px;
	overflow: hidden;
}

/* 全国の取扱店バナー（ご指定の文章） */
.national-shop-banner {
	background-color: #F5F2EC;
	border: 1px dashed var(--color-gold);
	padding: 25px;
	border-radius: 6px;
	text-align: center;
	max-width: 750px;
	margin: 30px auto 0 auto;
}

.banner-text {
	font-size: 13.5px;
	color: var(--color-text);
	margin-bottom: 15px;
	text-align: left;
	line-height: 1.8;
}

.btn-national-link {
	display: inline-block;
	padding: 10px 30px;
	background-color: var(--color-primary);
	color: var(--color-bg);
	font-size: 12.5px;
	font-weight: 500;
	border-radius: 4px;
	box-shadow: 0 3px 10px rgba(79, 93, 81, 0.15);
}

.btn-national-link:hover {
	background-color: var(--color-text);
}

/* ==========================================================================
   7. Instagram（本物のようなサンライズ・グラデーションボタン）
   ========================================================================== */
.instagram-section {
	padding: 60px 0;
	background-color: var(--color-bg);
}

.instagram-sub {
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--color-gold);
	margin-bottom: 15px;
	font-weight: 700;
}

.instagram-desc {
	font-size: 14px;
	color: #555555;
	line-height: 1.85;
	max-width: 580px;
	margin: 20px auto 30px auto;
}

/* インスタ公式の美しいグラデーションを再現したボタン */
.btn-instagram-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 45px;
	color: #FFFFFF !important;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 4px;
	/* 本物そっくりのサンライズ・グラデーション */
	background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45);
	background-size: 200% 200%;
	animation: gradientShift 6s ease infinite;
	box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.btn-instagram-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(225, 48, 108, 0.35);
}

.insta-icon-svg {
	width: 16px;
	height: 16px;
	fill: #FFFFFF;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* ==========================================================================
   8. 上に戻るボタン ＆ アニメーション
   ========================================================================== */
#scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--color-primary);
	color: var(--color-bg);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(79, 93, 81, 0.15);
	font-size: 16px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 99;
}

#scroll-to-top.show {
	opacity: 1;
	visibility: visible;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   9. フッター
   ========================================================================== */
.site-footer {
	padding: 60px 0 40px 0;
	background-color: var(--color-bg);
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.footer-logo-img {
	height: 20px;
	margin-bottom: 25px;
	opacity: 0.8;
}

.copyright {
	font-size: 10px;
	color: var(--color-accent);
}

/* ==========================================================================
   10. レスポンシブ最適化（スマホ版とPC版の見え方を劇的にチェンジ！）
   ========================================================================== */
@media (min-width: 769px) {

	/* PC版でのみ、ハンバーガーボタンを非表示にし、左上のナビ一覧を有効化 */
	.menu-trigger {
		display: none;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 14px;
	}

	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	/* スマホヘッダー：左上に「超オシャレなハンバーガーボタン」、右側に「ロゴ」 */
	.site-header {
		padding: 10px 0;
	}

	.header-container {
		display: flex;
		justify-content: space-between;
		/* 左右に完璧配置 */
		align-items: center;
		padding: 0 5%;
	}

	/* スマホ版左上：ハンバーガーボタン */
	.menu-trigger {
		display: flex;
		order: 1;
		/* 左端に配置 */
	}

	/* スマホ版中央・右寄：ロゴ */
	.site-logo {
		order: 2;
		/* 右端側へ配置 */
	}

	.logo-img {
		height: 20px;
	}

	/* PC専用リンクをスマホでは非表示 */
	.pc-nav,
	.header-right-action {
		display: none;
	}

	/* スマホ専用スライドメニュー */
	.sp-overlay-menu {
		display: flex;
	}

	/* コンセプト */
	.concept-section {
		padding: 40px 0;
	}

	.concept-title {
		font-size: 18px;
	}

	.concept-lead {
		font-size: 14px;
	}

	/* 2行商品スワイプ */
	.product-scroll-container {
		grid-auto-columns: 165px;
		/* スマホに最もフィットする幅 */
		gap: 12px;
	}

	.product-img-wrapper {
		height: 130px;
	}

	.product-name {
		height: 52px;
		font-size: 11.5px;
	}

	/* ★ スマホ版店舗スワイプカード（超コンパクト横長仕様への劇的チェンジ） */
	.shop-scroll-container {
		grid-template-rows: repeat(2, auto);
		/* スマホ版もご要望通り縦2行 */
		grid-auto-columns: 240px;
		/* スマホでスワイプしやすい細めカード */
		gap: 10px;
		padding-bottom: 20px;
	}

	.shop-card {
		flex-direction: row;
		/* 横長レイアウトにして、省スペースでたくさんの情報を流す */
		height: 100px;
		align-items: center;
		background-color: #F5F2EC;
	}

	.shop-card-img-wrapper {
		width: 80px;
		height: 100%;
		/* 左側全面を丸ごと写真に */
		flex-shrink: 0;
	}

	.shop-card-body {
		padding: 8px 12px;
		gap: 2px;
		overflow: hidden;
	}

	.shop-card-name {
		font-size: 11.5px;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 2px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		/* 長い店名をスマートにカット */
	}

	.shop-card-address,
	.shop-card-tel,
	.shop-card-hours {
		font-size: 9.5px;
		margin-bottom: 0;
	}

	.shop-card-address {
		height: auto;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.shop-tag {
		top: 5px;
		right: 5px;
		font-size: 7px;
		padding: 1px 4px;
	}

	/* インスタグラム */
	.instagram-desc {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.btn-instagram-link {
		padding: 12px 35px;
		font-size: 12.5px;
	}

	#scroll-to-top {
		bottom: 20px;
		right: 20px;
		width: 38px;
		height: 38px;
	}
}