/* ============================================================
   blossom bazaar — HOME theme styles
   Quiet Editorial x Seasonal Human
   ============================================================ */

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

:root {
	--bb-bg: #f7f4ef;
	--bb-bg-sub: #efeae2;
	--bb-bg-deep: #e7e0d6;
	--bb-ink: #2a2724;
	--bb-ink-soft: #4e4842;
	--bb-greige: #8a8078;
	--bb-greige-light: #b8aea3;
	--bb-line: #d9d1c5;
	--bb-line-soft: #e5ded2;
	--bb-green: #295848;
	--bb-green-ink: #1f4638;
	--bb-font-jp: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
	--bb-font-mincho: "Shippori Mincho", "Yu Mincho", "游明朝", serif;
	--bb-font-serif: "EB Garamond", "Cormorant Garamond", Georgia, serif;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bb-bg);
	color: var(--bb-ink);
	font-family: var(--bb-font-jp);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	border: 0;
	padding: 0;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--bb-green);
	outline-offset: 4px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 16px;
	left: 16px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--bb-bg);
	color: var(--bb-green);
	clip: auto;
}

.mobile-only-break {
	display: none;
}

.nowrap {
	white-space: nowrap;
}

.bb-container {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 0 40px;
}

.bb-section {
	padding: 140px 0;
}

.site-main {
	background: var(--bb-bg);
}

.mincho {
	font-family: var(--bb-font-mincho);
	font-weight: 400;
	letter-spacing: 0.04em;
}

.eyebrow {
	display: block;
	font-family: var(--bb-font-serif);
	font-size: 13px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.14em;
	color: var(--bb-green);
}

.small {
	font-size: 13px;
	letter-spacing: 0.04em;
	color: var(--bb-ink-soft);
}

/* Header */

.site-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--bb-line-soft);
	background: var(--bb-bg);
}

.site-header__inner {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-branding {
	flex-shrink: 0;
}

.wordmark,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	color: var(--bb-green);
	font-family: var(--bb-font-mincho);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: lowercase;
}

.custom-logo-link img {
	width: auto;
	max-height: 48px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 36px;
	color: var(--bb-ink);
	font-size: 14px;
	letter-spacing: 0.08em;
}

.site-nav a {
	padding: 4px 0;
	transition: color 0.25s ease;
}

.site-nav a:hover {
	color: var(--bb-green);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 2px;
	background: var(--bb-green);
	color: var(--bb-bg);
	font-size: 13px;
	letter-spacing: 0.08em;
	transition: background 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
	background: var(--bb-green-ink);
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
}

.menu-toggle span {
	width: 20px;
	height: 1px;
	background: var(--bb-ink);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(5px) rotate(35deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-5px) rotate(-35deg);
}

.mobile-nav {
	padding: 8px 20px 24px;
	border-top: 1px solid var(--bb-line-soft);
	background: var(--bb-bg);
}

.mobile-nav a {
	display: block;
	padding: 15px 0;
	border-bottom: 1px solid var(--bb-line-soft);
	color: var(--bb-ink);
	font-size: 14px;
	letter-spacing: 0.08em;
}

/* Photo placeholders */

.bb-ph {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	background:
		repeating-linear-gradient(
			45deg,
			rgba(138, 128, 120, 0.05) 0,
			rgba(138, 128, 120, 0.05) 8px,
			rgba(138, 128, 120, 0.09) 8px,
			rgba(138, 128, 120, 0.09) 16px
		),
		linear-gradient(160deg, #e7ded0 0%, #d6cbbb 100%);
	color: var(--bb-ink-soft);
}

.bb-ph::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.35), transparent 60%);
	pointer-events: none;
}

.bb-ph__label {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 2px;
	background: rgba(247, 244, 239, 0.85);
	color: var(--bb-ink);
	font-family: "SF Mono", "IBM Plex Mono", Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.16em;
}

.bb-ph__note {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 2;
	color: var(--bb-ink-soft);
	font-family: "SF Mono", "IBM Plex Mono", Menlo, monospace;
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: 0.08em;
	opacity: 0.75;
}

.bb-ph.tone-a {
	background:
		repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.05) 0, rgba(138, 128, 120, 0.05) 8px, rgba(138, 128, 120, 0.09) 8px, rgba(138, 128, 120, 0.09) 16px),
		linear-gradient(160deg, #eadfcd 0%, #d3c6b2 100%);
}

.bb-ph.tone-b {
	background:
		repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.05) 0, rgba(138, 128, 120, 0.05) 8px, rgba(138, 128, 120, 0.09) 8px, rgba(138, 128, 120, 0.09) 16px),
		linear-gradient(160deg, #e4d9c6 0%, #c9bba6 100%);
}

.bb-ph.tone-c {
	background:
		repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.05) 0, rgba(138, 128, 120, 0.05) 8px, rgba(138, 128, 120, 0.09) 8px, rgba(138, 128, 120, 0.09) 16px),
		linear-gradient(160deg, #ded2be 0%, #bfb29b 100%);
}

.bb-ph.tone-d {
	background:
		repeating-linear-gradient(45deg, rgba(138, 128, 120, 0.05) 0, rgba(138, 128, 120, 0.05) 8px, rgba(138, 128, 120, 0.09) 8px, rgba(138, 128, 120, 0.09) 16px),
		linear-gradient(160deg, #e2d5c1 0%, #b8ab94 100%);
}

.bb-ph.tone-shadow {
	background:
		repeating-linear-gradient(45deg, rgba(60, 55, 50, 0.06) 0, rgba(60, 55, 50, 0.06) 8px, rgba(60, 55, 50, 0.1) 8px, rgba(60, 55, 50, 0.1) 16px),
		linear-gradient(160deg, #a29583 0%, #756b5c 100%);
	color: var(--bb-bg);
}

.bb-ph.tone-shadow .bb-ph__label {
	background: rgba(41, 37, 32, 0.7);
	color: var(--bb-bg);
}

.bb-ph.tone-shadow .bb-ph__note {
	color: rgba(247, 244, 239, 0.85);
}

.bb-photo {
	margin: 0;
	background: var(--bb-bg-deep);
}

.bb-photo__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 54% 50%;
	transform: scale(1.12);
	transform-origin: 55% 58%;
}

/* Buttons */

.bb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 32px;
	border: 1px solid var(--bb-green);
	border-radius: 2px;
	background: var(--bb-green);
	color: var(--bb-bg);
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bb-btn:hover {
	background: var(--bb-green-ink);
	transform: translateY(-1px);
}

.bb-btn__arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

.bb-btn:hover .bb-btn__arrow {
	transform: translateX(4px);
}

.bb-btn--ghost {
	background: transparent;
	color: var(--bb-green);
}

.bb-btn--ghost:hover {
	background: var(--bb-green);
	color: var(--bb-bg);
}

.service-features {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-width: 0;
}

.service-features span {
	white-space: nowrap;
}

.service-features span:not(:last-child)::after {
	content: "｜";
	margin: 0 10px;
	color: currentColor;
	opacity: 0.78;
}

/* Hero */

.hero {
	padding-top: 80px;
	padding-bottom: 140px;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 72px;
	align-items: end;
}

.hero-headline {
	margin: 0 0 28px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 60px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.hero-headline .headline-line,
.final-cta-headline .headline-line {
	display: block;
	width: fit-content;
	white-space: nowrap;
}

.hero-sub {
	max-width: 420px;
	margin: 0 0 44px;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2;
}

.hero-product-cue {
	display: grid;
	grid-template-columns: 1fr;
	gap: 7px;
	max-width: 480px;
	margin-bottom: 24px;
	padding: 20px 0;
	border-top: 1px solid var(--bb-line);
	border-bottom: 1px solid var(--bb-line);
}

.hero-product-cue .label {
	flex: 0 0 auto;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 15px;
	letter-spacing: 0.14em;
	white-space: nowrap;
}

.hero-product-cue .price {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	color: var(--bb-ink);
	font-family: var(--bb-font-serif);
	font-size: 25px;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.hero-product-cue .price strong {
	font-size: 1.16em;
	font-weight: 500;
}

.hero-product-cue .price--initial {
	color: var(--bb-green);
}

.hero-product-cue .price--regular {
	font-size: 20px;
	color: var(--bb-ink-soft);
}

.hero-product-cue .yen {
	color: var(--bb-greige);
	font-size: 13px;
	letter-spacing: 0.08em;
}

.hero-product-cue .tax {
	color: var(--bb-greige);
	font-size: 12px;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.hero-product-cue .cue-tax {
	margin-top: 2px;
}

.hero-secondary-link-wrap {
	margin: 12px 0 0;
}

.hero-secondary-link {
	color: var(--bb-green);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.hero-secondary-link:hover {
	opacity: 0.78;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.hero-product-features {
	max-width: 480px;
	margin: 20px 0 0;
	color: var(--bb-greige);
	font-size: 12px;
	line-height: 1.9;
	letter-spacing: 0.1em;
}

.hero-visual {
	height: 720px;
}

/* Empathy */

.empathy {
	background: var(--bb-bg-sub);
}

.empathy-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 80px;
	align-items: center;
}

.empathy-headline,
.market-headline {
	margin: 24px 0 48px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.04em;
}

.empathy-copy,
.market-copy,
.discovery-copy p,
.way-copy,
.faq-lead p,
.step-body {
	white-space: pre-line;
}

.empathy-copy {
	max-width: 480px;
	margin: 0 0 36px;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2.05;
}

.empathy-close {
	max-width: 420px;
	margin: 0;
	padding-top: 32px;
	border-top: 1px solid var(--bb-line);
	color: var(--bb-green);
	font-family: var(--bb-font-mincho);
	font-size: 20px;
	letter-spacing: 0.08em;
}

.empathy-visual {
	height: 520px;
}

.life01-visual__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 64% 68%;
}

.life01-visual::after {
	display: none;
}

/* Experience */

.experience-headline {
	margin: 24px auto 72px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.6;
	text-align: center;
}

.experience-headline.align-left {
	margin: 0;
	text-align: left;
}

.steps-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 128px;
}

.step {
	padding-top: 32px;
	border-top: 1px solid var(--bb-line);
	text-align: center;
}

.step-num {
	margin-bottom: 34px;
	color: var(--bb-green);
	font-family: var(--bb-font-serif);
	font-size: 32px;
	font-style: italic;
	letter-spacing: 0.02em;
}

.step-title {
	margin-bottom: 6px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 24px;
	letter-spacing: 0.08em;
}

.step-title-en {
	margin-bottom: 20px;
	color: var(--bb-greige);
	font-family: var(--bb-font-serif);
	font-size: 13px;
	font-style: italic;
	letter-spacing: 0.16em;
}

.step-body {
	margin: 0;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 1.9;
}

.discovery-block {
	padding-top: 80px;
	border-top: 1px solid var(--bb-line);
}

.discovery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 52px;
}

.discovery-copy {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
	gap: 56px;
	align-items: start;
}

.discovery-copy .mincho {
	margin: 0;
	color: var(--bb-ink);
	font-size: 36px;
	line-height: 1.6;
}

.discovery-copy p {
	margin: 0;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2.1;
}

.discovery-copy > p:not(.mincho) {
	max-width: 520px;
	padding-top: 14px;
}

.discovery-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.discovery-gallery .bb-ph {
	margin: 0;
}

.discovery-photo {
	aspect-ratio: 4 / 5;
}

.discovery-photo::after {
	display: none;
}

.discovery-photo__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.discovery-photo--02 .discovery-photo__image {
	object-position: 58% 56%;
}

.discovery-photo--03 .discovery-photo__image {
	object-position: 56% 54%;
}

.discovery-photo--04 .discovery-photo__image {
	object-position: 52% 56%;
}

/* Product */

.product {
	background: var(--bb-bg-sub);
}

.product-grid {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	gap: 100px;
	align-items: flex-start;
}

.product-headline {
	margin: 24px 0 12px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 56px;
	font-weight: 400;
	line-height: 1.3;
}

.product-sub {
	margin: 0 0 48px;
	color: var(--bb-ink-soft);
	font-size: 16px;
}

.price-card {
	display: grid;
	gap: 12px;
	margin-bottom: 34px;
	padding: 28px 0;
	border-top: 1px solid var(--bb-line);
	border-bottom: 1px solid var(--bb-line);
}

.price-card .price-line {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
}

.price-card .price-label {
	color: var(--bb-greige);
	font-family: var(--bb-font-serif);
	font-size: 14px;
	font-style: italic;
	letter-spacing: 0.14em;
}

.price-card .price-line--initial .price-label,
.price-card .price-line--initial .price-big {
	color: var(--bb-green);
}

.price-card .price-big {
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 50px;
	line-height: 1;
	letter-spacing: 0.02em;
}

.price-card .price-mid {
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 34px;
	line-height: 1;
	letter-spacing: 0.02em;
}

.price-card .price-yen {
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 24px;
}

.price-card .tax {
	margin: 4px 0 0;
	color: var(--bb-greige);
	font-size: 13px;
	letter-spacing: 0.06em;
}

.product-cta-note {
	margin: 14px 0 18px;
	color: var(--bb-greige);
	font-size: 12px;
	letter-spacing: 0.08em;
}

.specs {
	display: grid;
	gap: 12px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.specs li {
	display: flex;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px dashed var(--bb-line);
	color: var(--bb-ink);
	font-size: 16px;
}

.specs li::before {
	content: "-";
	color: var(--bb-green);
	font-family: var(--bb-font-serif);
}

.product-note {
	margin: 0 0 28px;
	color: var(--bb-ink-soft);
	font-size: 15px;
}

.product-secondary-link-wrap {
	margin: 0;
}

.product-secondary-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bb-green);
	font-size: 14px;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.product-secondary-link:hover {
	opacity: 0.78;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.product-secondary-note {
	margin: 8px 0 0;
	color: var(--bb-greige);
	font-size: 12px;
	letter-spacing: 0.06em;
}

	.product-secondary-link-wrap {
		margin-bottom: 14px;
	}

	.product-secondary-link {
		font-size: 13px;
		letter-spacing: 0.06em;
	}

.product-note--consult {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.02em;
}

.how {
	padding: 40px;
	border: 1px solid var(--bb-line-soft);
	background: var(--bb-bg);
}

.how-title {
	margin-bottom: 8px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--bb-line);
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 20px;
	letter-spacing: 0.14em;
}

.how-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.how-list li {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--bb-line-soft);
	font-size: 16px;
}

.how-list li:last-child {
	border-bottom: 0;
}

.how-list .n {
	color: var(--bb-green);
	font-family: var(--bb-font-serif);
	font-size: 20px;
	font-style: italic;
	line-height: 1.4;
}

.how-list .t {
	color: var(--bb-ink);
	line-height: 1.6;
}

.how-list .t small {
	display: block;
	margin-top: 4px;
	color: var(--bb-greige);
	font-size: 13px;
	letter-spacing: 0.04em;
}

.shipping-copy {
	margin: 24px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--bb-line-soft);
	color: var(--bb-ink-soft);
	font-size: 14px;
	line-height: 1.9;
}

/* Market */

.market-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 80px;
	align-items: center;
}

.market-headline {
	margin-bottom: 40px;
}

.market-copy {
	margin: 0;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2;
}

.market-photos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.market-photo {
	margin: 0;
}


.market-photo::after {
	display: none;
}

.market-photo__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.market-photo--market01 {
	grid-column: span 2;
	aspect-ratio: 16 / 9;
}

.market-photo--hand01,
.market-photo--hand02 {
	aspect-ratio: 1 / 1;
}

.market-photo--market01 .market-photo__image {
	object-position: 50% 48%;
}

.market-photo--hand01 .market-photo__image {
	object-position: 50% 44%;
}

.market-photo--hand02 .market-photo__image {
	object-position: 50% 44%;
}

/* Philosophy */

.philosophy {
	padding: 200px 0 180px;
	background: var(--bb-bg);
	text-align: center;
}

.philosophy-headline {
	margin: 0 auto 16px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 60px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.philosophy .eyebrow {
	margin: 0 0 56px;
}

.philosophy-copy {
	max-width: 480px;
	margin: 0 auto 100px;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2.4;
	white-space: pre-line;
}

.philosophy-visual {
	max-width: 900px;
	height: 480px;
	margin: 0 auto;
}

.life02-visual::after {
	display: none;
}

.life02-visual__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 58%;
}

/* More ways */

.more-ways {
	background: var(--bb-bg-sub);
}

.ways-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
	margin-top: 64px;
	align-items: stretch;
}

.way-card {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 40px;
	background: var(--bb-bg);
}

.way-visual {
	margin: 0;
	overflow: hidden;
	border-radius: 2px;
	background: var(--bb-bg-deep);
	height: 340px;
}

.way-visual__image {
	display: block;
	width: 100%;
	height: 100%;
}

.way-visual__image--gift {
	object-fit: cover;
	object-position: 52% 50%;
}

.way-visual__image--select {
	object-fit: contain;
	object-position: center;
}

.way-tag {
	display: block;
	margin-bottom: 16px;
	color: var(--bb-greige);
	font-size: 12px;
	letter-spacing: 0.14em;
}

.way-title {
	margin: 0;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.5;
}

.way-sub {
	margin: 12px 0 0;
	color: var(--bb-greige);
	font-size: 14px;
	letter-spacing: 0.1em;
}

.way-copy {
	margin: 0;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2;
}

.way-key {
	margin: 0;
	padding-top: 24px;
	border-top: 1px solid var(--bb-line);
	color: var(--bb-green);
	font-family: var(--bb-font-mincho);
	font-size: 20px;
	letter-spacing: 0.06em;
}

.way-card .bb-btn {
	align-self: flex-start;
	margin-top: auto;
}

/* FAQ */

.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
	gap: 88px;
}

.faq-lead .mincho {
	margin: 24px 0 32px;
	color: var(--bb-ink);
	font-size: 40px;
	line-height: 1.55;
}

.faq-lead p {
	margin: 0;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2.1;
}

.faq-item {
	padding: 26px 0;
	border-top: 1px solid var(--bb-line-soft);
}

.faq-item:last-child {
	border-bottom: 1px solid var(--bb-line-soft);
}

.faq-q {
	display: flex;
	width: 100%;
	align-items: baseline;
	gap: 20px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 18px;
	line-height: 1.55;
	letter-spacing: 0.04em;
	text-align: left;
}

.faq-q .q-mark {
	flex-shrink: 0;
	color: var(--bb-green);
	font-family: var(--bb-font-serif);
	font-size: 20px;
	font-style: italic;
}

.faq-q .plus {
	flex-shrink: 0;
	margin-left: auto;
	color: var(--bb-greige);
	font-size: 20px;
	transition: transform 0.25s ease;
}

.faq-item.is-open .faq-q .plus {
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	padding-left: 40px;
	color: var(--bb-ink-soft);
	font-size: 15px;
	line-height: 1.95;
	white-space: pre-line;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-a {
	max-height: 760px;
	padding-top: 18px;
	padding-bottom: 10px;
}

.faq-a a {
	color: var(--bb-green);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

/* Contact */

.contact {
	background: var(--bb-bg-sub);
	scroll-margin-top: 110px;
}

.contact-wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: 64px 72px;
	border: 1px solid var(--bb-line-soft);
	background: var(--bb-bg);
}

.contact-title {
	margin: 0 0 20px;
	color: var(--bb-ink);
	font-size: 42px;
	line-height: 1.45;
	letter-spacing: 0.05em;
}

.contact-copy {
	margin: 0 0 40px;
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2;
	white-space: pre-line;
}

.contact-form {
	max-width: 760px;
}

.contact-form .ff-el-group {
	margin-bottom: 22px;
}

.contact-form .ff-el-input--label label,
.contact-form .ff-el-input--label .ff-el-label,
.contact-form .ff-el-form-label {
	color: var(--bb-ink);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea,
.contact-form .ff-el-form-control {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid var(--bb-line);
	border-radius: 2px;
	background: #fff;
	color: var(--bb-ink);
	font-family: var(--bb-font-jp);
	font-size: 16px;
	line-height: 1.6;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
	min-height: 170px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form .ff-el-form-control:focus {
	border-color: var(--bb-green);
	outline: none;
	box-shadow: 0 0 0 1px rgba(41, 88, 72, 0.25);
}

.contact-form input[type="checkbox"] {
	accent-color: var(--bb-green);
}

.contact-form .ff_submit_btn_wrapper,
.contact-form .ff-btn-wrap,
.contact-form .ff-btn-submit {
	margin-top: 10px;
}

.contact-form .ff-btn-submit,
.contact-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 28px;
	border: 1px solid var(--bb-green);
	border-radius: 2px;
	background: var(--bb-green);
	color: #fff;
	font-family: var(--bb-font-jp);
	font-size: 14px;
	letter-spacing: 0.08em;
	transition: background 0.25s ease;
}

.contact-form .ff-btn-submit:hover,
.contact-form button[type="submit"]:hover {
	background: var(--bb-green-ink);
}

/* Final CTA */

.final-cta {
	position: relative;
	min-height: 720px;
	padding: 120px 0;
	background-color: var(--bb-bg-deep);
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.20) 48%, rgba(0, 0, 0, 0.14) 100%),
		var(--bb-final-cta-bg);
	background-position: center, var(--bb-final-cta-bg-position, 50% 52%);
	background-size: cover, cover;
	background-repeat: no-repeat, no-repeat;
	overflow: hidden;
}

.final-cta-inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: calc(720px - 240px);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 620px;
	margin: 0 auto 0 clamp(24px, 7vw, 96px);
	padding: 0 40px 0 0;
	color: var(--bb-bg);
	text-align: left;
}

.final-cta-headline {
	margin: 0 0 40px;
	color: var(--bb-bg);
	font-family: var(--bb-font-mincho);
	font-size: 60px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.final-cta-price {
	display: grid;
	gap: 8px;
	margin-bottom: 40px;
	padding: 16px 24px;
	border-top: 1px solid rgba(247, 244, 239, 0.35);
	border-bottom: 1px solid rgba(247, 244, 239, 0.35);
	color: rgba(247, 244, 239, 0.9);
	font-family: var(--bb-font-mincho);
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.16em;
}

.final-cta-price .line {
	white-space: nowrap;
}

.final-cta-price strong {
	margin: 0 4px;
	font-family: var(--bb-font-serif);
	font-size: 24px;
	font-weight: 400;
}

.final-cta-price-meta {
	font-family: var(--bb-font-jp);
	font-size: 12px;
	letter-spacing: 0.12em;
	color: rgba(247, 244, 239, 0.76);
}

.final-cta .bb-btn {
	border-color: var(--bb-bg);
	background: var(--bb-bg);
	color: var(--bb-green);
}

.final-cta .bb-btn:hover {
	background: #fff;
}

.final-cta-small {
	justify-content: center;
	margin: 28px 0 0;
	color: rgba(247, 244, 239, 0.75);
	font-size: 12px;
	line-height: 1.9;
	letter-spacing: 0.16em;
}

.final-cta-secondary-link-wrap {
	margin: 14px 0 0;
}

.final-cta-secondary-link {
	color: rgba(247, 244, 239, 0.88);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.final-cta-secondary-link:hover {
	opacity: 0.8;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

/* Footer */

.site-footer {
	padding: 72px 0 40px;
	border-top: 1px solid var(--bb-line-soft);
	background: var(--bb-bg);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 60px;
	align-items: start;
	margin-bottom: 64px;
}

.footer-tagline {
	max-width: 240px;
	margin: 20px 0 0;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	color: var(--bb-ink-soft);
	font-size: 13px;
	letter-spacing: 0.08em;
}

.footer-nav a,
.footer-social a,
.footer-bottom a {
	transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-social a:hover,
.footer-bottom a:hover {
	color: var(--bb-green);
}

.footer-social {
	color: var(--bb-ink-soft);
	font-family: var(--bb-font-serif);
	font-size: 13px;
	font-style: italic;
	letter-spacing: 0.14em;
	text-align: right;
}

.footer-social a {
	display: inline-block;
	margin-left: 20px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 32px;
	border-top: 1px solid var(--bb-line-soft);
	color: var(--bb-greige);
	font-size: 11px;
	letter-spacing: 0.1em;
}

.footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: flex-end;
}

/* Fallback content */

.entry-title {
	margin: 0 0 24px;
	font-family: var(--bb-font-mincho);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.5;
}

.entry-content {
	color: var(--bb-ink-soft);
	line-height: 2;
}

/* Legal pages */

.legal-page {
	background: var(--bb-bg);
}

.legal-page__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 56px 64px;
	border: 1px solid var(--bb-line-soft);
	background: var(--bb-bg-sub);
}

.legal-page__title {
	margin: 0 0 32px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.05em;
}

.legal-page__content {
	color: var(--bb-ink-soft);
	font-size: 16px;
	line-height: 2;
}

.legal-page__content h2 {
	margin: 40px 0 12px;
	color: var(--bb-ink);
	font-family: var(--bb-font-mincho);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.legal-page__content p {
	margin: 0;
	white-space: pre-line;
}

.legal-page__content p + p {
	margin-top: 14px;
}

.legal-page__content ul {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.legal-page__content li {
	position: relative;
	padding-left: 1.1em;
}

.legal-page__content li + li {
	margin-top: 8px;
}

.legal-page__content li::before {
	content: '・';
	position: absolute;
	left: 0;
	color: var(--bb-green);
}

.legal-page__content a,
.legal-page__back a {
	color: var(--bb-green);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.legal-page__operator {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--bb-line);
}

.legal-page__back {
	margin: 40px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--bb-line-soft);
	font-size: 14px;
	letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
	.site-nav {
		gap: 22px;
		font-size: 13px;
	}

	.life01-visual__image {
		object-position: 66% 66%;
	}

	.hero-grid,
	.empathy-grid,
	.discovery-grid,
	.product-grid,
	.market-grid,
	.faq-grid {
		gap: 56px;
	}

	.hero-headline,
	.philosophy-headline,
	.final-cta-headline {
		font-size: 48px;
	}

	.hero-headline {
		font-size: 44px;
		letter-spacing: 0.02em;
	}

	.discovery-copy {
		grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
		gap: 40px;
	}

	.discovery-copy > p:not(.mincho) {
		max-width: 500px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1.6fr;
	}

	.footer-social {
		text-align: left;
	}

	.contact-wrap {
		padding: 52px 44px;
	}

	.legal-page__inner {
		padding: 48px 40px;
	}

	.legal-page__title {
		font-size: 38px;
	}
}

@media (max-width: 900px) and (min-width: 768px) {
	.hero-product-cue {
		flex-wrap: wrap;
	}

	.hero-product-cue .price {
		margin-left: 0;
	}

	.hero-visual .bb-photo__image {
		object-position: 55% 50%;
	}
}

@media (max-width: 767px) {
	html,
	body {
		overflow-x: hidden;
	}

	body {
		font-size: 15px;
	}

	.bb-container {
		padding: 0 24px;
	}

	.bb-section {
		padding: 80px 0;
	}

	.site-header__inner {
		padding: 14px 16px;
		gap: 12px;
	}

	.site-header__actions {
		gap: 8px;
		flex-shrink: 0;
	}

	.site-branding {
		flex: 1 1 auto;
		min-width: 0;
		max-width: 172px;
	}

	.wordmark,
	.custom-logo-link {
		font-size: 16px;
		max-width: 100%;
	}

	.custom-logo-link img {
		max-width: 100%;
		max-height: 34px;
	}

	.site-nav {
		display: none;
	}

	.header-cta {
		padding: 9px 10px;
		font-size: 11px;
		line-height: 1.2;
		letter-spacing: 0.05em;
		white-space: nowrap;
		flex-shrink: 0;
	}

	.menu-toggle {
		display: flex;
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}

	.menu-toggle span {
		width: 18px;
	}

	.hero {
		padding-top: 0;
		padding-bottom: 60px;
	}

	.hero-grid,
	.empathy-grid,
	.discovery-grid,
	.product-grid,
	.market-grid,
	.faq-grid,
	.ways-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-visual {
		order: 0;
		height: 380px;
		margin: 0 -24px;
		margin-top: 8px;
		border-radius: 0;
	}

	.hero-visual .bb-photo__image {
		object-position: 55% 50%;
		transform: scale(1.1);
	}

	.hero-headline {
		margin-bottom: 20px;
		font-size: 24px;
		line-height: 1.65;
		letter-spacing: 0.02em;
	}

	.hero-headline .headline-line,
	.final-cta-headline .headline-line {
		width: fit-content;
		white-space: nowrap;
	}

	.hero-sub {
		margin-bottom: 32px;
		font-size: 15px;
	}

	.hero-product-cue {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 14px;
		padding: 16px 0;
	}

	.hero-product-cue .price {
		font-size: 22px;
	}

	.hero-product-cue .price--regular {
		font-size: 18px;
	}

	.hero-secondary-link {
		font-size: 12px;
	}

	.hero-product-features {
		margin: 24px 0 0;
		line-height: 2;
		letter-spacing: 0.08em;
	}

	.service-features span:not(:last-child)::after {
		margin: 0 8px;
	}

	.hero .bb-btn,
	.product .bb-btn,
	.final-cta .bb-btn,
	.way-card .bb-btn {
		width: 100%;
		padding: 20px;
	}

	.empathy-headline,
	.market-headline {
		margin: 20px 0 32px;
		font-size: 26px;
		line-height: 1.7;
	}

	.empathy-copy {
		font-size: 15px;
	}

	.empathy-close {
		font-size: 17px;
	}

	.empathy-visual {
		order: 0;
		height: 320px;
		margin: 0 -24px;
		border-radius: 0;
	}

	.life01-visual__image {
		object-position: 62% 74%;
	}

	.experience-headline {
		margin-bottom: 48px;
		font-size: 24px;
		line-height: 1.7;
	}

	.steps-3 {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 80px;
	}

	.discovery-block {
		padding-top: 60px;
	}

	.discovery-copy .mincho {
		margin: 16px 0 28px;
		font-size: 24px;
	}

	.discovery-grid {
		gap: 40px;
	}

	.discovery-copy {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.discovery-copy > p:not(.mincho) {
		max-width: none;
		padding-top: 0;
	}

	.discovery-gallery {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.discovery-photo {
		aspect-ratio: 4 / 3;
	}

	.discovery-photo--02 .discovery-photo__image {
		object-position: 58% 52%;
	}

	.discovery-photo--03 .discovery-photo__image {
		object-position: 56% 50%;
	}

	.discovery-photo--04 .discovery-photo__image {
		object-position: 50% 40%;
	}

	.product-headline {
		font-size: 40px;
	}

	.product-sub {
		margin-bottom: 40px;
	}

	.price-card .price-big {
		font-size: 44px;
	}

	.price-card .price-mid {
		font-size: 30px;
	}

	.price-card .price-yen {
		font-size: 22px;
	}

	.product-cta-note,
	.product-secondary-note {
		font-size: 11px;
		letter-spacing: 0.05em;
	}

	.how {
		padding: 28px;
	}

	.market-photos {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.market-photo--market01 {
		grid-column: auto;
		aspect-ratio: 3 / 2;
	}

	.market-photo--hand01,
	.market-photo--hand02 {
		aspect-ratio: 4 / 3;
	}

	.market-photo--market01 .market-photo__image {
		object-position: 50% 50%;
	}

	.market-photo--hand01 .market-photo__image {
		object-position: 50% 42%;
	}

	.market-photo--hand02 .market-photo__image {
		object-position: 50% 42%;
	}

	.philosophy {
		padding: 88px 0;
	}

	.philosophy-headline {
		font-size: 32px;
		line-height: 1.7;
	}

	.philosophy-copy {
		margin-bottom: 60px;
		font-size: 15px;
	}

	.philosophy-visual {
		height: 280px;
		margin: 0 -24px;
		border-radius: 0;
	}

	.life02-visual__image {
		object-position: 50% 52%;
	}

	.ways-grid {
		gap: 32px;
	}

	.way-card {
		padding: 24px;
		gap: 28px;
	}

	.way-visual {
		height: 240px;
	}

	.way-visual__image--gift {
		object-position: 50% 52%;
	}

	.way-title {
		font-size: 24px;
	}

	.way-card .bb-btn {
		width: auto;
		padding: 16px 22px;
	}

	.faq-lead .mincho {
		font-size: 26px;
	}

	.mobile-only-break {
		display: block;
	}

	.faq-q {
		gap: 14px;
		font-size: 15px;
	}

	.contact {
		scroll-margin-top: 92px;
	}

	.contact-wrap {
		padding: 36px 24px;
	}

	.contact-title {
		font-size: 28px;
	}

	.contact-copy {
		margin-bottom: 28px;
		font-size: 15px;
		line-height: 1.9;
	}

	.contact-form {
		max-width: none;
	}

	.contact-form .ff-el-input--label label,
	.contact-form .ff-el-input--label .ff-el-label,
	.contact-form .ff-el-form-label {
		font-size: 13px;
	}

	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form input[type="number"],
	.contact-form input[type="tel"],
	.contact-form select,
	.contact-form textarea,
	.contact-form .ff-el-form-control {
		min-height: 50px;
		font-size: 16px;
	}

	.contact-form .ff-btn-submit,
	.contact-form button[type="submit"] {
		width: 100%;
		font-size: 15px;
	}

	.faq-a {
		padding-left: 0;
		font-size: 14px;
	}

	.final-cta {
		min-height: 520px;
		padding: 72px 0;
		background-position: center, var(--bb-final-cta-bg-position, 66% 54%);
	}

	.final-cta-inner {
		min-height: calc(520px - 144px);
		margin-left: 0;
		max-width: 360px;
		padding: 0 24px;
	}

	.final-cta-headline {
		font-size: 24px;
		line-height: 1.7;
	}

	.final-cta-price {
		padding: 12px 16px;
		font-size: 13px;
		gap: 6px;
	}

	.final-cta-price strong {
		font-size: 20px;
	}

	.final-cta-price .line {
		white-space: normal;
	}

	.final-cta-secondary-link {
		font-size: 12px;
		letter-spacing: 0.08em;
	}

	.final-cta-small {
		max-width: 300px;
		line-height: 1.9;
	}

	.site-footer {
		padding-top: 48px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 40px;
	}

	.footer-social {
		text-align: left;
	}

	.footer-social a {
		margin: 0 20px 0 0;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.footer-bottom-links {
		justify-content: flex-start;
	}

	.legal-page__inner {
		padding: 34px 24px;
	}

	.legal-page__title {
		font-size: 30px;
		line-height: 1.6;
	}

	.legal-page__content {
		font-size: 15px;
		line-height: 1.95;
	}

	.legal-page__content h2 {
		margin-top: 32px;
		font-size: 22px;
	}
}

@media (min-width: 768px) {
	.mobile-nav {
		display: none !important;
	}
}
