:root {
	--fukuhana-color-primary: #f47f73;
	--fukuhana-color-primary-hover: #df6359;
	--fukuhana-color-primary-soft: #fff1ef;
	--fukuhana-color-text: #292727;
	--fukuhana-color-muted: #686363;
	--fukuhana-color-border: #e8e3e1;
	--fukuhana-color-background: #ffffff;
	--fukuhana-color-surface: #faf8f7;
	--fukuhana-color-footer: #252525;
	--fukuhana-color-footer-muted: #d4d1d0;
	--fukuhana-radius-small: 8px;
	--fukuhana-radius-medium: 14px;
	--fukuhana-shadow-menu: 0 14px 40px rgba(35, 29, 27, 0.12);
	--fukuhana-container-width: 1320px;
	--fukuhana-header-height: 88px;
	--fukuhana-mobile-nav-height: 68px;
	--fukuhana-transition: 180ms ease;
	--fukuhana-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

html {
	box-sizing: border-box;
	overflow-x: hidden;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--fukuhana-color-background);
	color: var(--fukuhana-color-text);
	font-family: var(--fukuhana-font-family);
	-webkit-font-smoothing: antialiased;
}

body.fukuhana-overlay-open {
	overflow: hidden;
}

.fukuhana-container {
	width: min(calc(100% - 40px), var(--fukuhana-container-width));
	margin-inline: auto;
}

.fukuhana-site-main {
	min-height: 40vh;
}

.fukuhana-icon {
	display: block;
	width: 24px;
	height: 24px;
}

.fukuhana-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10010;
	padding: 10px 14px;
	border-radius: var(--fukuhana-radius-small);
	background: var(--fukuhana-color-text);
	color: #fff;
	transform: translateY(-150%);
}

.fukuhana-skip-link:focus {
	transform: translateY(0);
}

.fukuhana-page a:focus-visible,
.fukuhana-page button:focus-visible,
.fukuhana-overlay a:focus-visible,
.fukuhana-overlay button:focus-visible,
.fukuhana-overlay input:focus-visible {
	outline: 3px solid rgba(244, 127, 115, 0.42);
	outline-offset: 3px;
}

.fukuhana-icon-button {
	position: relative;
	display: inline-grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--fukuhana-color-text);
	text-decoration: none;
	cursor: pointer;
	place-items: center;
	transition: color var(--fukuhana-transition), background-color var(--fukuhana-transition);
}

.fukuhana-icon-button:hover {
	background: var(--fukuhana-color-primary-soft);
	color: var(--fukuhana-color-primary-hover);
}

.fukuhana-cart-count {
	position: absolute;
	top: 1px;
	right: 0;
	display: grid;
	min-width: 19px;
	height: 19px;
	padding-inline: 4px;
	border: 2px solid #fff;
	border-radius: 10px;
	background: var(--fukuhana-color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	place-items: center;
}

.fukuhana-cart-count.is-empty {
	display: none;
}

.fukuhana-logo {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	text-decoration: none;
}

.fukuhana-logo__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.fukuhana-faq-accordion {
	display: grid;
	gap: 12px;
	margin-block: 24px;
}

.fukuhana-faq-item {
	overflow: hidden;
	border: 1px solid var(--fukuhana-color-border);
	border-radius: var(--fukuhana-radius-small);
	background: #fff;
}

.fukuhana-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	color: var(--fukuhana-color-text);
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	transition: color var(--fukuhana-transition), background-color var(--fukuhana-transition);
}

.fukuhana-faq-question::-webkit-details-marker {
	display: none;
}

.fukuhana-faq-question:hover,
.fukuhana-faq-item[open] .fukuhana-faq-question {
	background: var(--fukuhana-color-primary-soft);
	color: var(--fukuhana-color-primary-hover);
}

.fukuhana-faq-question::after {
	flex: 0 0 auto;
	content: "+";
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

.fukuhana-faq-item[open] .fukuhana-faq-question::after {
	content: "−";
}

.fukuhana-faq-answer {
	padding: 0 20px 18px;
}

.fukuhana-faq-answer > :last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.fukuhana-container {
		width: min(calc(100% - 24px), var(--fukuhana-container-width));
	}

	.fukuhana-faq-question {
		padding: 16px;
	}

	.fukuhana-faq-answer {
		padding: 0 16px 16px;
	}

}

@media (prefers-reduced-motion: reduce) {
	:root {
		--fukuhana-transition: 0ms;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
