/* --- 基本設定 --- */
:root {
	--primary-color: #8a1c1c;
	--text-color: #333;
	--bg-color: #fdfcf8;
	--accent-gold: #c5a059;
	--gray-bg: #f5f5f5;
}

body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	color: var(--text-color);
	background-color: var(--bg-color);
	margin: 0;
	padding: 0;
	line-height: 1.8;
}

h1, h2, h3 {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
}

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

ul {
	list-style: none;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1100px!important;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
	font-size: 2rem;
	color: var(--primary-color);
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background-color: var(--accent-gold);
}

/* --- ヘッダー --- */
header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	font-family: 'Zen Old Mincho', serif;
	color: var(--primary-color);
	width: 160px;
}

.nav-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

/* WEBショップだけボタン化 */
.nav-menu .nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:5px;
  padding: 8px 20px;
  /* border: 1px solid #8b0000; */
  background-color: #8a1c1c;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.nav-menu svg {
    width: 18px;
    height: 18px;
    fill: #fff;
	padding-bottom: 3px;
}

/* hover */
.nav-menu .nav-btn:hover {
  background-color: #6d1616;
  color: #fff;
}


/* --- フッター --- */
footer {
	background-color: #222;
	color: #888;
	text-align: center;
	padding: 20px 0;
	font-size: 0.8rem;
	margin-top: auto;
}

.social-link {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 15px;
	display: inline-block;
}

.btn-menu {
	display: none;
}

.btn-menu__line {
	position: relative;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	transition: all .4s;
	border-radius: 4px;
	background-color: #01A491;
}

.btn-menu__line::before, .btn-menu__line::after {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	transition: inherit;
	border-radius: 4px;
	background-color: inherit;
}

.btn-menu__line::before {
	top: -8px;
}

.btn-menu__line::after {
	top: 8px;
}

.btn-menu.active .btn-menu__line {
	background-color: transparent;
}

.btn-menu.active .btn-menu__line::before {
	transform: rotate(45deg);
}

.btn-menu.active .btn-menu__line::after {
	transform: rotate(-45deg);
}

.btn-menu.active .btn-menu__line::before, .btn-menu.active .btn-menu__line::after {
	top: 0;
	background-color: #01A491;
}

.br-sp {
	display: none;
}

/* --- Floating CTA (Right Bottom) --- */
.floating-cta {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	width: 220px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	/* display: flex;
	flex-direction: column;
	align-items: flex-end; */
	/* opacity: 0;
	transform: translateY(20px);
	animation: slideInUp 1s ease 2s forwards; */
}

.floating-cta:hover {
	transform: translateY(-5px);
	opacity: .8;
}

.fc-img {
	background: url(../images/kodawari5.png);
	background-size: 130%;
	background-position: 20% center;
	background-repeat: no-repeat;
	height: 120px;
}

.fc-txt {
	text-align: center;
	padding: 10px 0;
	background-color: #d70000;
	color: #fff;
	font-weight: bold;
	position: relative;
}

.fc-txt i {
	position: absolute;
	right: 30px;
	top: 49%;
	transform: translateY(-50%);
}

@keyframes slideInUp {
	to { opacity: 1; transform: translateY(0); }
}

.cta-bubble {
	background: #fff;
	color: #000;
	padding: 8px 16px;
	font-size: 0.8rem;
	font-weight: 700;
	border-radius: 4px;
	margin-bottom: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	position: relative;
	white-space: nowrap;
}

.cta-bubble::after {
	content: '';
	position: absolute;
	bottom: -6px;
	right: 20px;
	width: 0; height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #fff;
}

.cta-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #D8472C;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
	cursor: pointer;
	transition: transform 0.3s;
	position: relative;
}

.cta-button svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.cta-button:hover {
	transform: scale(1.1);
}

.cta-button::before {
	content: '';
	position: absolute;
	top: -5px; left: -5px; right: -5px; bottom: -5px;
	border-radius: 50%;
	border: 1px solid var(--accent-gold);
	animation: pulse 2s infinite;
	opacity: 0;
}

@keyframes pulse {
	0% { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(1.5); opacity: 0; }
}

.small {
	font-size: 75%;
}

@media (max-width: 768px) {
	.floating-cta {
		bottom: 0;
		right: 0;
		width: 100%;
		display: flex;
	}
	.fc-img {
		width: 50%;
		height: 80px;
	}
	.fc-txt {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 4.2vw;
		padding-right: 2%;
		box-sizing: border-box;
	}
	.fc-txt i {
		right: 9%;
		top: 50%;
	}
	.br-sp {
		display: block;
	}
	.hero-content h1 { font-size: 2rem!important;}
	.header-inner {
		flex-direction: column;
		height: auto;
		padding: 15px 3%;
		align-items: flex-start;
	}

	.btn-menu {
		position: fixed;
		z-index: 100;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 7%;
		aspect-ratio: 1/1;
		padding: 0;
		box-sizing: border-box;
		cursor: pointer;
		text-align: center;
		border: none;
		outline: none;
		background: none;
		top: 2.8%;
		right: 3%;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, .95);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		visibility: hidden;
		transition: .3s all linear;
	}

	.nav-menu.show {
		visibility: visible;
		opacity: 1;
	}

	.section-title {
		font-size: 7vw;
	}

	.shop-banner {
		padding: 6% 8% 10%;
	}

	.btn-main {
		padding: 5%;
		width: 100%;
		box-sizing: border-box;
	}

	.shop-details h3 {
		font-size: 5vw;
	}

	.shop-details th, .shop-details td {
		font-size: 3.5vw;
	}
	
	footer {
		padding: 5% 0 26%;
	}
}