/* Corporate Logo ver2 Medium (CDN) */
@font-face {
	font-family: 'Corporate Logo Medium ver2';
	src: url('https://use.typekit.net/pf/tk/rrfz/n5/m?features=NONE&v=3&token=UWiewzNGqfaXgl50sfTX597VqiNVO%2BVsJvzyIM5SabTjZinSwqaidRKypEX3LMfHdBUibNmD%2BPCRx%2F5yCXr4NA%3D%3D') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* Tablet-only hero height tuning */
@media (min-width: 769px) and (max-width: 1024px) {
	.t-hero {
		min-height: clamp(52rem, 92vw, 66rem);
		--hero-slider-margin-bottom-mobile: clamp(4rem, 8vw, 5.5rem);
	}
}

/* Corporate Logo ver2 Bold (CDN) */
@font-face {
	font-family: 'Corporate Logo Bold ver2';
	src: url('https://use.typekit.net/pf/tk/rrfz/n7/m?features=NONE&v=3&token=UWiewzNGqfaXgl50sfTX597VqiNVO%2BVsJvzyIM5SabTjZinSwqaidRKypEX3LMfHdBUibNmD%2BPCRx%2F5yCXr4NA%3D%3D') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Backup font (similar style) for license/token expiration fallback */
@font-face {
	font-family: 'Corporate Logo Backup Rounded';
	src: url('https://cdn.jsdelivr.net/npm/@fontpkg/corporate-logo-rounded-ver2@10.50.0/Corporate%20Logo%20Rounded.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* Global design tokens */
:root {
	/* Font families */
	--font-main: 'a-otf-gothic-mb101-pr5', 'Noto Sans JP', sans-serif;
	--font-sub: 'Noto Sans JP', 'a-otf-gothic-mb101-pr5', sans-serif;
	--font-display: 'Corporate Logo', 'a-otf-gothic-mb101-pr5', sans-serif;
	--font-fallback: sans-serif;

	/* Brand palette */
	--color-base-yellow: #f7b52c;
	--color-base-red: #ce1316;
	--color-base-orange: #ee7800;
	--color-text-black: #231815;
	--color-accent-green-1: #06c755;
	--color-accent-pink: #e4007f;
	--color-accent-green-2: #008243;
	--color-surface-white: #ffffff;
	--color-surface-gray: #f6f6f6;

	/* Layout tokens */
	--main-content-max-width: 1000px;
	--content-max-width: var(--main-content-max-width);
	--space-section: 40px;
	--space-section-sm: 56px;
	--section-header-padding-inline: clamp(1rem, 2.4vw, 1.5rem);
	--transition-base: 0.3s ease;

	/* Typography tokens */
	--type-size-body: 0.92rem;
	--type-size-body-lg: clamp(0.92rem, 1.02vw, 1.15rem);
	--type-size-lead: clamp(1.25rem, 2.5vw, 1.5rem);
	--type-size-label: clamp(0.86rem, 0.92vw, 1.02rem);
	--type-size-watermark: clamp(3.6rem, 7.6vw, 5.9rem);
	--type-size-watermark-lg: clamp(4.2rem, 8.5vw, 6.7rem);
	--type-size-showcase-meta: clamp(1.65rem, 2.1vw, 2.1rem);
	--type-size-showcase-action: clamp(0.9rem, 1.45vw, 1.35rem);
	--type-size-guides-item: clamp(1.2rem, 1.8vw, 1.5rem);
	--svg-title-w-top: clamp(11.2rem, 24.5vw, 19.2rem);
	--svg-title-w-top-sp: clamp(9.4rem, 61vw, 14rem);
	--svg-title-h-top: clamp(3.6rem, 8vw, 6.2rem);
	--svg-title-h-top-sp: clamp(3rem, 11vw, 4.6rem);

	/* Header tokens */
	--header-padding-inline: 32px;
	--header-padding-block: 14px;
	--header-gap-main: 2.2rem;
	--header-gap-small: 0.65rem;
	--header-logo-width-pc: 213px;
	--header-logo-width-tablet: 180px;
	--header-logo-width-mobile: min(16vw, 80px);
	--header-right-image-scale: 0.667;
	--header-note-width-pc: calc(340px * var(--header-right-image-scale));
	--header-tel-width-pc: min(229px, 100%);
	--header-tel-width-tablet: min(34.7vw, 287px);
	--header-tel-width-mobile: min(50vw, 320px);
	--header-cta-width-pc: calc(236px * var(--header-right-image-scale));

	/* SP Menu tokens */
	--sp-menu-bg: rgba(245, 245, 245, 0.95);
	--sp-menu-header-border: rgba(35, 24, 21, 0.1);
	--sp-menu-nav-gap: 0.65rem;
	--sp-menu-nav-padding: 0.8rem 0;
	--sp-menu-nav-font-size: 1.1rem;
	--sp-menu-icon-color: var(--color-base-red);
	--sp-menu-icon-size: 0.8rem;
	--sp-menu-section-gap: 2rem;
	--sp-menu-btn-max-width: 320px;

	/* Menu transitions */
	--menu-transition-duration: 0.25s;
	--menu-transition-easing: ease;
	--menu-hover-transition: 0.2s ease;
}

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

body {
	margin: 0;
	font-family: var(--font-main);
	color: var(--color-text-black);
	background-color: var(--color-surface-white);
	line-height: 1.6;
	font-size: var(--type-size-body);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

html {
	overflow-x: hidden;
}

html.is-page-transition-enabled main,
html.is-page-transition-enabled footer {
	transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity;
}

html.is-page-transition-enabled.is-page-entering main,
html.is-page-transition-enabled.is-page-entering footer,
html.is-page-transition-enabled.is-page-leaving main,
html.is-page-transition-enabled.is-page-leaving footer {
	opacity: 0;
}

html.is-page-transition-enabled.is-page-leaving body {
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	html.is-page-transition-enabled main,
	html.is-page-transition-enabled footer {
		transition: none;
	}

	html.is-page-transition-enabled.is-page-entering main,
	html.is-page-transition-enabled.is-page-entering footer,
	html.is-page-transition-enabled.is-page-leaving main,
	html.is-page-transition-enabled.is-page-leaving footer {
		opacity: 1;
	}
}

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

button,
input,
textarea,
select {
	font: inherit;
	color: inherit;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover,
a:focus-visible {
	color: var(--color-base-orange);
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}


section:not(:nth-child(2)) {
	padding-block: var(--space-section);
}

/* Utility layout */
.l_inner {
	max-width: var(--content-max-width);
	margin-inline: auto;
	padding-inline: 24px;
	width: 100%;
}

.bl_header__inner {
	width: 100%;
	padding-inline: var(--header-padding-inline);
	margin: 0 auto;
	box-sizing: border-box;
}

.bl_header {
	position: sticky;
	top: 0;
	z-index: 45;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.bl_header.is-scroll-hidden {
	transform: translateY(calc(-100% - 0.2rem));
}

html.is-page-transition-enabled.is-page-entering .bl_header,
html.is-page-transition-enabled.is-page-leaving .bl_header {
	z-index: 60;
}

/* Global section wrappers */
.bl_header__top,
.bl_hero,
.bl_blog,
.bl_overview,
.bl_products,
.bl_showcase,
.bl_direct-shops,
.bl_space,
.bl_guides,
.bl_footer {
	width: 100%;
}

/* Header (Desktop baseline) */
.bl_header__top {
	display: flex;
	justify-content: center;
	background-color: var(--color-base-yellow);
	color: var(--color-text-black);
	height: 140px;
	box-sizing: border-box;
	padding-block: var(--header-padding-block);
}

.bl_header__top-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--header-gap-main);
}

.bl_header__branding {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-self: center;
}

.bl_header__branding a {
	display: inline-block;
	transition: opacity var(--transition-base);
}

.bl_header__branding a:hover {
	opacity: 0.8;
}

.bl_header__branding img {
	display: block;
	width: var(--header-logo-width-pc);
	max-width: var(--header-logo-width-pc);
}

.bl_header__nav-groups {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-end;
	gap: 1rem;
}

.bl_header__top-nav {
	width: 100%;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
}

.bl_header__right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
	flex-wrap: nowrap;
	margin-left: auto;
}

.bl_header__call {
	display: flex;
	flex-direction: row;
	gap: 0;
	min-width: 0;
	align-items: center;
	  
}

@media screen and (max-width: 767px) {
	.bl_header__call {
		visibility: hidden;
}}


.bl_header__call-main {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}

.bl_header__telblock {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	align-items: center;
}

.bl_header__tel-link {
	display: block;
	line-height: 0;
}

.bl_header__tel-link img {
	width: var(--header-tel-width-pc);
	max-width: 100%;
	height: auto;
}

.bl_header__tel-number {
	font-size: 1.375rem;
	font-weight: 700;
}

.bl_header__tel-icon {
	font-size: 1.25rem;
}

.bl_header__note {
	line-height: 0;
}

.bl_header__note img {
	display: block;
	width: var(--header-note-width-pc);
	max-width: 100%;
	height: auto;
}

.bl_header__hours {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	text-align: right;
}

.bl_header__hamburger {
	display: none;
	border: 0;
	background: transparent;
	padding: 0;
}

.bl_header__cta {
	display: flex;
	gap: 1rem;

	align-items: center;
}

.bl_header__contact-btn {
	display: inline-flex;
	align-items: center;
	/* justify-content: end; */
	padding: 0;
	border-radius: 0;
	line-height: 0;
	transition:
		transform var(--transition-base),
		opacity var(--transition-base);
}

.bl_header__contact-btn img {
	display: block;
	width: var(--header-cta-width-pc);
	max-width: 100%;
	height: auto;
}

.bl_header__contact-btn:hover,
.bl_header__contact-btn:focus-visible {
	transform: translateY(-2px);
	opacity: 0.9;
}

.bl_header__contact-btn--line {
	background-color: var(--color-accent-green-1);
}

.bl_header__contact-btn--mail {
	background-color: var(--color-accent-pink);
}

.bl_header__menu-wrap {
	width: 100%;
}

.bl_header__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 0;
	justify-content: flex-end;
}

.bl_header__nav-item {
	position: relative;
}

.bl_header__nav-link {
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1rem 0.9rem;
	border-radius: 15px;
	font-weight: 700;
	background-color: var(--color-surface-white);
	transition: transform var(--transition-base);
}

.bl_header__nav-link:hover,
.bl_header__nav-link:focus-visible {
	transform: translateY(-2px);
}

.bl_header__nav-link--toggle {
	border: 0;
	cursor: pointer;
	font-family: inherit;
	color: inherit;
}

.bl_header__purpose-menu {
	position: absolute;
	top: calc(100% + 0.45rem);
	left: 50%;
	z-index: 20;
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	width: clamp(24rem, 36vw, 34rem);
	padding: 0.55rem;
	border-radius: 0.9rem;
	background: rgb(255 255 255 / 30%);
	transform: translateX(-50%);
}

.bl_header__purpose-menu::before {
	content: '';
	position: absolute;
	top: -0.45rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 0.42rem solid transparent;
	border-right: 0.42rem solid transparent;
	border-bottom: 0.45rem solid rgb(255 255 255 / 30%);
}

.bl_header__nav-item--purpose.is-open .bl_header__purpose-menu {
	display: grid;
}

.bl_header__purpose-link {
	width: 100%;
	min-height: 2.2rem;
	padding: 0.1rem 0.9rem;
	border-radius: 15px;
	white-space: nowrap;
}

.bl_header__purpose-menu .bl_header__purpose-link:nth-child(1) {
	color: #2f6da7;
}

.bl_header__purpose-menu .bl_header__purpose-link:nth-child(2) {
	color: #dd7e1f;
}

.bl_header__purpose-menu .bl_header__purpose-link:nth-child(3) {
	color: #cd5f88;
}

.bl_header__purpose-menu .bl_header__purpose-link:nth-child(4) {
	color: #438a56;
}

/* Footer */
.bl_footer {
	position: relative;
	isolation: isolate;
	background-color: var(--color-surface-white);
	color: var(--color-text-black);
	overflow: hidden;
	padding-top: clamp(3rem, 5vw, 6rem);
}

.route-front .bl_footer {
	background-color: var(--color-base-red);
}

.bl_footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--color-base-yellow);
	border-radius: clamp(4.8rem, 9vw, 7rem) clamp(4.8rem, 9vw, 7rem) 0 0;
	pointer-events: none;
	z-index: 0;
}

.bl_footer > * {
	position: relative;
	z-index: 1;
}

.bl_footer__body {
	max-width: 1560px;
	padding-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.bl_footer__top {
	display: grid;
	grid-template-columns: minmax(0, clamp(20rem, 28vw, 26rem)) minmax(0, clamp(24rem, 34vw, 32rem));
	align-items: center;
	justify-content: center;
	gap: 0;
	padding-bottom: clamp(2rem, 3.5vw, 3rem);
}

.bl_footer__policy {
	text-align: center;
	margin-top: clamp(0.4rem, 1.2vw, 0.8rem);
}

.bl_footer__policy a {
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1.4;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.bl_footer__brand {
	display: flex;
	flex-direction: column;
	gap: clamp(0.8rem, 1.7vw, 1.25rem);
	min-width: 0;
	width: min(100%, clamp(20rem, 28vw, 26rem));
	justify-self: end;
	padding-right: clamp(0.7rem, 1.8vw, 1.4rem);
}

.bl_footer__logo-link {
	display: inline-block;
	width: 100%;
	max-width: none;
}

.bl_footer__logo-link img {
	display: block;
	width: 100%;
	height: auto;
}

.bl_footer__buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.5rem, 1.2vw, 0.8rem);
	width: 100%;
}

.bl_footer__btn {
	display: inline-block;
	line-height: 0;
	transition:
		transform var(--transition-base),
		opacity var(--transition-base);
}

.bl_footer__btn img {
	display: block;
	width: 100%;
	height: auto;
}

.bl_footer__btn:hover,
.bl_footer__btn:focus-visible {
	transform: translateY(-2px);
	opacity: 0.88;
}

.bl_footer__contact {
	flex: 0 0 auto;
	min-width: 0;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
	justify-self: center;
	font-family: var(--font-sub);
	line-height: 1.3;
	border-left: 1px solid rgba(35, 24, 21, 0.68);
	padding-left: clamp(0.7rem, 1.8vw, 1.4rem);
}

.bl_footer__tel {
	margin: 0;
	line-height: 0;
	padding: clamp(0.5rem, 0.8vw, 0.7rem) 0;
}

.bl_footer__tel a {
	display: block;
	line-height: 0;
}

.bl_footer__tel img {
	width: min(27rem, 100%);
	height: auto;
}

.bl_footer__address {
	font-size: clamp(1rem, 1.45vw, 1.4rem);
	font-weight: 700;
	margin-bottom: clamp(0.55rem, 1vw, 0.8rem);
}

.bl_footer__company {
	font-size: clamp(1.1rem, 1.65vw, 1.55rem);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: clamp(0.28rem, 0.7vw, 0.55rem);
}

.bl_footer__fax {
	font-size: clamp(1.05rem, 1.3vw, 1.35rem);
	font-weight: 700;
	line-height: 1.36;
	margin-top: clamp(0.35rem, 0.8vw, 0.55rem);
}

.bl_footer__hours {
	font-size: clamp(0.88rem, 1.05vw, 1.05rem);
	font-weight: 700;
	line-height: 1.36;
}

.bl_footer__menus {
	display: none;
	grid-template-columns: repeat(3, max-content);
	grid-template-areas:
		'main products stores'
		'main examples stores';
	column-gap: clamp(1.5rem, 6vw, 6rem);
	row-gap: clamp(1rem, 2vw, 1.8rem);
	align-items: start;
	justify-content: center;
	justify-items: start;
	padding-top: clamp(2rem, 3.4vw, 2.8rem);
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.bl_footer__menu {
	width: fit-content;
	max-width: 100%;
}

.bl_footer__menu--main {
	grid-area: main;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bl_footer__menu--products {
	grid-area: products;
}

.bl_footer__menu--examples {
	grid-area: examples;
}

.bl_footer__menu--stores {
	grid-area: stores;
}

.bl_footer__menu-title {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5rem;
	width: fit-content;
	max-width: 100%;
	font-family: var(--font-sub);
	font-size: clamp(1.05rem, 1.2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: clamp(0.55rem, 1.2vw, 0.9rem);
}

.bl_footer__menu-title a {
	display: inline-block;
	width: fit-content;
	max-width: 100%;
}

.bl_footer__menu-title::before {
	content: '■';
	font-size: 0.58em;
	line-height: 1.9;
	flex-shrink: 0;
}

.bl_footer__menu ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(0.12rem, 0.4vw, 0.28rem);
	font-family: var(--font-sub);
	font-size: clamp(0.86rem, 0.95vw, 1.05rem);
	font-weight: 700;
	line-height: 1.46;
	width: fit-content;
	max-width: 100%;
}

.bl_footer__menu li {
	width: fit-content;
	max-width: 100%;
}

.bl_footer__menu li a {
	display: inline-block;
	width: fit-content;
	max-width: 100%;
}

.bl_footer__menu-title--space {
	margin-top: clamp(1rem, 1.8vw, 1.4rem);
	margin-bottom: 0;
}

.bl_footer__menu--main .bl_footer__menu-title {
	margin-bottom: clamp(0.28rem, 0.62vw, 0.5rem);
}

.bl_footer__menu--main ul {
	margin-top: clamp(0.2rem, 0.55vw, 0.46rem);
}

.bl_footer__legal {
	background: #231815;
	color: #fff;
	text-align: center;
	padding: 1rem 1rem 1.05rem;
	font-size: clamp(0.82rem, 1.02vw, 0.98rem);
	font-weight: 700;
	font-family: var(--font-sub);
}

.bl_footer__legal p {
	margin: 0;
	font-size: clamp(0.62rem, 1.6vw, 0.84rem);
	line-height: 1.2;
	white-space: nowrap;
}

.bl_footer a:hover,
.bl_footer a:focus-visible {
	color: inherit;
}

/* Hero (Legacy section) */
.bl_hero {
	position: relative;
	width: 100%;
	min-height: 600px;
	padding: 28rem 0;
	overflow: hidden;
	color: var(--color-surface-white);
}

.bl_hero__slider {
	width: 100%;
	height: 100%;
}

.bl_hero__slide {
	width: 100%;
	height: 100%;
}

.bl_hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

.bl_hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(247, 181, 44, 0.85);
	pointer-events: none;
}

.bl_hero__copy {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 80px 60px;
	gap: 2rem;
}

.bl_hero__vertical {
	font-family: var(--font-sub);
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 1.8;
}

.bl_hero__vertical--left {
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.bl_hero__vertical--right {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	justify-self: end;
}

.bl_hero__keywords {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
}

.bl_hero__heading {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.bl_hero__keyword,
.bl_hero__vertical {
	will-change: transform, opacity;
}

.bl_hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.8);
	background: rgba(35, 24, 21, 0.2);
	cursor: pointer;
	z-index: 2;
	pointer-events: auto;
}

.bl_hero__arrow--prev {
	left: 30px;
}

.bl_hero__arrow--next {
	right: 30px;
}

/* Blog section */
.bl_blog {
	--blog-main-width: min(41rem, 57vw);
	background-color: var(--color-base-yellow);
	color: var(--color-surface-white);
	position: relative;
	overflow: visible;
	border-radius: 0 0 7.5rem 7.5rem;
	/* 角丸下に見える下層レイヤー（primary red） */
	box-shadow: 0 16.4rem 0 var(--color-base-red);
	padding-block: calc(clamp(3.1rem, 4.2vw, 4rem) + clamp(1.2rem, 2vw, 2.4rem)) 18.2rem;
}

.bl_blog > .l_inner {
	position: relative;
	z-index: 1;
	padding-inline: 0;
	max-width: none;
}

.bl_blog__header,
.bl_overview__header,
.bl_products__header,
.bl_showcase__header,
.bl_direct-shops__header,
.bl_space__header,
.bl_guides__header {
	padding-inline: var(--section-header-padding-inline);
}

.bl_blog__header {
	position: relative;
	margin-bottom: 1.5rem;
}

.bl_blog__headline {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.bl_blog__title {
	margin: 0 auto;
	width: min(205px, 100%);
	line-height: 1;
}

.bl_blog__title picture {
	display: block;
	width: 100%;
}

.bl_blog__title img {
	display: block;
	width: 100%;
	height: auto;
}

.bl_blog__pickup {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	position: absolute;
	/* メイン写真の右端付近（上側）へ固定 */
	left: calc(50% + (var(--blog-main-width) / 2) - min(0.4rem, 1vw));
	top: calc(100% + -8.6rem);
	transform: translate(-100%, 0);
}

.bl_blog__pickup-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	width: min(12rem, 24vw);
	padding: 0.3rem 0.5rem;
	text-decoration: none;
	color: inherit;
	border-radius: 0.4rem;
}

.bl_blog__pickup-link[aria-disabled='true'] {
	pointer-events: none;
}

.bl_blog__pickup-badge {
	visibility: hidden;
	display: block;
	width: min(7rem, 9vw);
	height: auto;
	transform: translateX(calc(3 * 1rem)) translateY(calc(-7 / 16 * 1rem));
}

.bl_blog__pickup-date {
	font-family: 'Corporate Logo Medium ver2', 'Corporate Logo Backup Rounded', var(--font-display);
	font-size: clamp(1.25rem, 1.6vw, 1.55rem);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1;
}

.bl_blog__pickup-title {
	display: block;
	width: 100%;
	font-size: clamp(0.78rem, 0.92vw, 0.92rem);
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	overflow-wrap: anywhere;
}

.bl_blog__stage {
	position: relative;
	/* サイドカードは中央より小さくし、左右にはみ出す配置にする */
	--blog-side-scale: calc(337 / 630.0877);
	--blog-card-gap: 1rem;
	--blog-side-width: calc(var(--blog-main-width) * var(--blog-side-scale));
	/* 中央カード端 + サイドカード端 + カード間余白 */
	--blog-side-offset: calc((var(--blog-main-width) / 2) + (var(--blog-side-width) / 2) + var(--blog-card-gap));
	/* さらにサイドカード1枚ぶん + 余白だけ外側へ */
	--blog-outer-offset: calc(var(--blog-side-offset) + var(--blog-side-width) + var(--blog-card-gap));
	/* 外側プレビューも2段目と同サイズ */
	--blog-outer-scale: var(--blog-side-scale);
	padding: 0 0 clamp(0.9rem, 1.8vw, 1.8rem);
}

.bl_blog__slider-list {
	position: relative;
	/* 画像+本文ぶんの高さを確保して、初期表示から操作ボタンと重ならないようにする */
	height: calc(28 * 1rem);
	overflow: visible;
	margin: 0;
	padding: 0;
}

.bl_blog__slider-item {
	position: absolute;
	left: 50%;
	top: 50%;
	width: var(--blog-main-width);
	opacity: 0;
	transform-origin: center center;
	transition: none;
	pointer-events: none;
	z-index: 0;
}

.bl_blog__slider-item.is-pos-0,
.bl_blog__slider-item.is-pos--1,
.bl_blog__slider-item.is-pos-1,
.bl_blog__slider-item.is-pos--2,
.bl_blog__slider-item.is-pos-2 {
	pointer-events: auto;
	transition:
		transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
		opacity 0.35s ease;
}

.bl_blog__slider-item.is-pos-0 {
	opacity: 1;
	/* 中央カードは本文ぶん高さが増えるため、本文高さの半分だけ下げて写真中心を揃える */
	transform: translate(-50%, calc(-50% + var(--blog-active-shift-y, 0px))) scale(1);
	z-index: 5;
}

.bl_blog__slider-item.is-pos--1 {
	opacity: 1;
	transform: translate(calc(-50% - var(--blog-side-offset)), -50%) scale(var(--blog-side-scale));
	z-index: 4;
}

.bl_blog__slider-item.is-pos-1 {
	opacity: 1;
	transform: translate(calc(-50% + var(--blog-side-offset)), -50%) scale(var(--blog-side-scale));
	z-index: 4;
}

.bl_blog__slider-item.is-pos--2 {
	opacity: 1;
	transform: translate(calc(-50% - var(--blog-outer-offset)), -50%) scale(var(--blog-outer-scale));
	z-index: 3;
}

.bl_blog__slider-item.is-pos-2 {
	opacity: 1;
	transform: translate(calc(-50% + var(--blog-outer-offset)), -50%) scale(var(--blog-outer-scale));
	z-index: 3;
}

.bl_blog__card {
	display: flex;
	flex-direction: column;
}

.bl_blog__thumb {
	margin: 0;
	aspect-ratio: 630.0877 / 419.215;
	border-radius: 1rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.3);
}

.bl_blog__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bl_blog__body {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition:
		opacity 0.25s ease,
		max-height 0.35s ease;
}

.bl_blog__slider-item.is-pos-0 .bl_blog__body {
	opacity: 1;
	max-height: 14rem;
}

.bl_blog__lead {
	margin: 1rem 0 0;
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: clamp(1rem, 1.35vw, 1.3rem);
	line-height: 1.85;
	letter-spacing: 0.02em;
	text-align: left;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	/* リード文は3行で打ち切り、超過分は省略表示 */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	text-overflow: ellipsis;
}

.bl_blog__controls {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	position: absolute;
	left: 50%;
	bottom: -8rem;
	transform: translateX(-50%);
	z-index: 8;
}

.bl_blog__control {
	width: 4.55rem;
	height: 3.1rem;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
	position: relative;
}

.bl_blog__control::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('images/top/navi_blog.svg') center / contain no-repeat;
	transition: transform 0.2s ease;
}

.bl_blog__control--next::before {
	transform: rotate(180deg);
}

.bl_blog__control--prev:hover::before,
.bl_blog__control--prev:focus-visible::before {
	transform: translateX(-3px);
}

.bl_blog__control--next:hover::before,
.bl_blog__control--next:focus-visible::before {
	transform: rotate(180deg) translateX(-3px);
}

.bl_blog__control:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.75);
	outline-offset: 3px;
}

.bl_blog__slider-item.is-pos-0[data-url] {
	cursor: pointer;
}

/* 記事件数が少ない場合の見せ方最適化 */
[data-blog-slider].is-count-3 {
	--blog-side-scale: 0.42;
	--blog-card-gap: 0.8rem;
	--blog-outer-offset: var(--blog-side-offset);
	--blog-outer-scale: var(--blog-side-scale);
}

[data-blog-slider].is-count-2 {
	--blog-side-scale: 0.46;
	--blog-card-gap: 0.8rem;
	--blog-outer-offset: var(--blog-side-offset);
	--blog-outer-scale: var(--blog-side-scale);
}

[data-blog-slider].is-count-1 .bl_blog__controls {
	display: none;
}

/* Overview section */
.bl_primary-zone {
	--zone-parallax-y: 0px;
	position: relative;
	background-color: var(--color-base-red);
	overflow: hidden;
	isolation: isolate;
}

.bl_primary-zone::before,
.bl_primary-zone::after {
	content: '';
	position: absolute;
	height: calc(100% + 22.7rem);
	width: clamp(9.33rem, 17.33vw, 16.67rem);
	background: url('images/top/kv/bg_okasho.svg') center top / 100% auto no-repeat;
	opacity: 0.32;
	pointer-events: none;
	z-index: 0;
	will-change: transform;
}

.bl_primary-zone::before {
	left: -30px;
	top: auto;
	bottom: 0;
	/* 動きは残しつつ、見切れないように移動量を制限 */
	transform: rotate(180deg) translate3d(0, clamp(-140px, calc(var(--zone-parallax-y) * 1), 0), 0);
	transform-origin: center center;
}

.bl_primary-zone::after {
	right: -30px;
	top: auto;
	bottom: 0;
	transform: translate3d(0, clamp(-140px, calc(var(--zone-parallax-y) * 0.45), 140px), 0);
	transform-origin: center center;
}

/* PCは元のパララックス挙動に戻す */
@media (min-width: 1025px) {
	.bl_primary-zone::before {
		top: auto;
		bottom: 0;
		transform: translate3d(0, calc(var(--zone-parallax-y) * -1), 0) rotate(180deg);
	}

	.bl_primary-zone::after {
		top: 0;
		bottom: auto;
		transform: translate3d(0, var(--zone-parallax-y), 0);
	}
}

.bl_primary-zone .bl_overview,
.bl_primary-zone .bl_products,
.bl_primary-zone .bl_showcase,
.bl_primary-zone .bl_direct-shops {
	position: relative;
	z-index: 1;
	background-color: transparent;
}

/* ラッパー内セクションは常に同一赤背景の上で描画する */
.bl_primary-zone > section {
	background: transparent;
}

.bl_primary-zone .bl_showcase {
	background: #fff;
	color: var(--color-text-black);
	margin-top: 6rem;
}

@media (max-width: 1024px) {
	.bl_primary-zone .bl_showcase {
		margin-top: 0;
	}
}

.bl_primary-zone .bl_showcase::before,
.bl_primary-zone .bl_showcase::after {
	content: none;
}

.bl_primary-zone .bl_overview::before,
.bl_primary-zone .bl_products::before,
.bl_primary-zone .bl_products::after,
.bl_primary-zone .bl_direct-shops::before,
.bl_primary-zone .bl_direct-shops::after {
	content: none;
}

.bl_primary-zone .bl_showcase__card {
	color: var(--color-text-black);
}

@media (max-width: 768px) {
	.bl_primary-zone::before,
	.bl_primary-zone::after {
		height: calc(100% + 13.33rem);
		width: clamp(4.53rem, 17.33vw, 7.87rem);
	}

	.bl_primary-zone::before {
		top: auto;
		bottom: 0;
	}

	.bl_primary-zone::after {
		top: auto;
		bottom: 0;
	}
}

.bl_overview {
	background-color: var(--color-base-red);
	color: var(--color-surface-white);
	position: relative;
	overflow: hidden;
}

.bl_overview::before {
	content: 'OKASHO RETEQ';
	position: absolute;
	font-family: var(--font-display);
	font-size: var(--type-size-watermark);
	opacity: 0.08;
	inset: 50% auto auto -5%;
	transform: rotate(-90deg) translateY(-50%);
	pointer-events: none;
}

.bl_overview > .l_inner {
	position: relative;
	z-index: 1;
}

.bl_overview__header {
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
}

/* セクション見出しはブログと同様にSVG画像で統一 */
.bl_overview__title {
	margin: 0 auto 1rem;
	line-height: 1;
}

.bl_overview__title img {
	display: block;
	height: auto;
	margin-inline: auto;
}

.bl_overview__lead {
	font-family: var(--font-sub);
	font-size: var(--type-size-lead);
	line-height: 1.8;
}

.bl_overview__content {
	margin-top: 3.2rem;
	margin-inline: auto;
	position: relative;
	width: min(100%, 46.875rem);
	--overview-cards-width: min(100%, 46.875rem);
	--overview-panel-width: min(100%, 46.875rem);
	/* PCで絶対配置のパネルが次セクションへはみ出さないよう、下余白を確保 */
	padding-bottom: clamp(7rem, 12vw, 10.5rem);
}

.bl_overview__cards {
	display: flex;
	flex-wrap: wrap;
	--overview-cards-gap: 1rem;
	gap: var(--overview-cards-gap);
	width: var(--overview-cards-width);
	margin-inline: auto;
}

.bl_overview__card--half {
	flex: 0 0 calc((100% - var(--overview-cards-gap)) / 2);
}

.bl_overview__card--wide {
	flex: 0 0 calc((100% - var(--overview-cards-gap)) * 0.55);
}

.bl_overview__card--narrow {
	flex: 0 0 calc((100% - var(--overview-cards-gap)) * 0.45);
}

.bl_overview__card {
	background-color: var(--color-surface-white);
	color: var(--color-text-black);
	border-radius: 2rem;
	padding: 2.8rem 1.8rem 1.65rem;
	position: relative;
	min-height: 26rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: none;
	transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
	.bl_overview__cards .bl_overview__card:hover {
		transform: translateY(-0.45rem);
		box-shadow: 0 0.7rem 1.6rem rgba(35, 24, 21, 0.18);
	}
}

.bl_overview__cards .bl_overview__card:focus-visible {
	transform: translateY(-0.45rem);
	box-shadow: 0 0.7rem 1.6rem rgba(35, 24, 21, 0.18);
}

/* 下段カードのコンテンツは下寄せ */
.bl_overview__card--lower {
	justify-content: flex-end;
}

/* 下段カードは purpose と h3 の並びを逆にする（h3の後にpurpose） */
.bl_overview__card--lower .bl_overview__card-title {
	order: 1;
}

.bl_overview__card--lower .bl_overview__card-purpose {
	position: static;
	order: 2;
	margin-top: 0.4rem;
}

/* 下段の右寄せカード */
.bl_overview__card--lower.bl_overview__card--purpose-right .bl_overview__card-purpose {
	margin-left: auto;
}

/* 下段の左寄せカード */
.bl_overview__card--lower.bl_overview__card--purpose-left .bl_overview__card-purpose {
	margin-left: 0;
	margin-right: auto;
	justify-content: flex-start;
}

/* 上段/下段共通の左寄せタグ */
.bl_overview__card--purpose-left .bl_overview__card-purpose {
	right: auto;
	left: 1.2rem;
	justify-content: flex-start;
}

.bl_overview__card-purpose {
	position: absolute;
	top: 1rem;
	right: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
	font-family: var(--font-sub);
	font-weight: 700;
}

.bl_overview__card-number {
	position: absolute;

	width: min(5.9rem, 31%);
	z-index: 1;
	pointer-events: none;
}

/* 各カード番号の個別位置調整用フック */
.bl_overview__card-number--01 {
	top: -2rem;
	left: 0;
}

.bl_overview__card-number--02 {
	top: 1rem;
	right: 1rem;
}

.bl_overview__card-number--03 {
	bottom: 12rem;
	left: -3rem;
}

.bl_overview__card-number--04 {
	bottom: 11rem;
	right: -2.5rem;
}

.bl_overview__card-number img {
	display: block;
	width: 100%;
	height: auto;
}

.bl_overview__card-tag {
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--color-text-black);
}

.bl_overview__card-tag::before {
	content: '(';
}

.bl_overview__card-tag::after {
	content: ')';
}

.bl_overview__card-title {
	margin: 0 auto;
	line-height: 1;
	padding: 0 2rem;
}

/* 上段カードはpurposeが絶対配置のため、title側でgap相当の間隔を確保 */
.bl_overview__card:not(.bl_overview__card--lower) .bl_overview__card-title {
	margin-top: 1rem;
}

.bl_overview__card-title-image {
	display: block;
	/* width: 100%; */
	height: auto;
	margin-inline: auto;
}

.bl_overview__panel {
	position: absolute;
	top: 41%;
	left: 50%;
	--overview-panel-lift: 0px;
	/* cardsより横幅を広く取り、中央に2カラムで重ねる */
	width: var(--overview-panel-width);
	transform: translate(-50%, calc(-50% + var(--overview-panel-lift)));
	z-index: 3;
	pointer-events: auto;
	display: flex;
	justify-content: space-between;
	padding: 0 3rem 0 4rem;
	gap: 0.55rem;
	background: var(--color-surface-white);
	border: 0.8rem solid var(--color-base-red);
	border-radius: 13rem;
	line-height: 1.65;
	color: var(--color-text-black);
	text-decoration: none;
	align-items: center;
	margin-inline: auto;
	box-shadow: none;
	transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
	.bl_overview__panel:hover {
		--overview-panel-lift: -0.45rem;
		box-shadow: 0 0.7rem 1.6rem rgba(35, 24, 21, 0.18);
	}
}

.bl_overview__panel:focus-visible {
	--overview-panel-lift: -0.45rem;
	box-shadow: 0 0.7rem 1.6rem rgba(35, 24, 21, 0.18);
}

.bl_overview__story {
	pointer-events: auto;
	/* テキスト行の長さに合わせて本文エリア幅を決める */
	width: fit-content;
	max-width: 100%;
}

.bl_overview__story-text {
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

.bl_overview__cta {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}

.bl_overview__cta img {
	display: block;
	width: min(14rem, 42vw);
	height: auto;
}

.bl_overview__panel-visual {
	position: relative;
	width: 100%;
	flex: 0 0 auto;
	max-width: 22rem;
	pointer-events: none;
}

.bl_overview__panel-visual::before {
	content: '';
	position: absolute;
	top: 0.2rem;
	right: -8rem;
	width: min(9.2rem, 72%);
	aspect-ratio: 173.75 / 149.28;
	transform: translateX(-50%);
	background: url('images/top/uptome_comment.svg') center / contain no-repeat;
	pointer-events: none;
}

.bl_overview__panel-visual img {
	display: block;
	width: 100%;
	height: auto;
}

/* Products section */
.bl_products {
	background-color: var(--color-base-red);
	color: var(--color-surface-white);
	position: relative;
	overflow: hidden;
}

.bl_products::before {
	content: 'GAME';
	position: absolute;
	font-family: var(--font-display);
	font-size: var(--type-size-watermark);
	opacity: 0.05;
	top: 20%;
	left: -5%;
}

.bl_products::after {
	content: 'RETEQ';
	position: absolute;
	font-family: var(--font-display);
	font-size: var(--type-size-watermark);
	opacity: 0.05;
	bottom: 15%;
	right: -5%;
}

.bl_products > .l_inner {
	position: relative;
	z-index: 1;
}

.bl_products__header {
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.bl_products__title {
	margin: 0 auto 0.5rem;
	line-height: 1;
}

.bl_products__title img {
	display: block;
	height: auto;
	margin-inline: auto;
}

.bl_products__lead {
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: var(--type-size-lead);
	line-height: 1.4;
}

.bl_products__lead-highlight {
	color: var(--color-base-yellow);
}

.bl_products__grid {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1.5rem;
}

.bl_products__item {
	background: var(--color-surface-white);
	color: var(--color-text-black);
	text-decoration: none;
	padding: 3.9rem 1.5rem 1.5rem;
	position: relative;
	min-height: var(--products-item-height, 16rem);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	overflow: hidden;
}

.bl_products__item:focus-visible {
	outline: 3px solid var(--color-base-red);
	outline-offset: 3px;
}

.bl_products__item:nth-child(1) {
	grid-column: span 6;
	--products-item-height: 21rem;
}

.bl_products__item:nth-child(2) {
	grid-column: span 6;
	--products-item-height: 21rem;
}

.bl_products__item:nth-child(3) {
	grid-column: span 8;
	--products-item-height: 16.2rem;
}

.bl_products__item:nth-child(4) {
	grid-column: span 4;
	--products-item-height: 16.2rem;
}

.bl_products__item:nth-child(5) {
	grid-column: span 5;
	--products-item-height: 14.2rem;
}

.bl_products__item:nth-child(6) {
	grid-column: span 7;
	--products-item-height: 14.2rem;
}

.bl_products__item-tag {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	padding: 0.35rem 1rem;
	background: var(--color-base-orange);
	color: #fff;
	font-size: var(--type-size-label);
}

.bl_products__item-media {
	flex: 1;
	margin: 2rem 0;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bl_products__item-media img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

@media (min-width: 1025px) {
	.bl_products__item {
		height: var(--products-item-height, 16rem);
		padding: 0 1.5rem;
	}

	.bl_products__item-media {
		min-height: 0;
		margin: 2rem 0;
	}

	.bl_products__item-action {
		position: absolute;
		right: 1.5rem;
		bottom: 1.5rem;
		align-self: auto;
	}
}

.bl_products__item-action {
	width: 48px;
	height: 42.75px;
	border: 0;
	border-radius: 0;
	background: url('images/top/arrow_gray_square.svg') center / contain no-repeat;
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	align-self: auto;
	z-index: 2;
	cursor: pointer;
	padding: 0;
}

.bl_products__item-action::before {
	content: none;
}

/* Showcase section */
.bl_showcase {
	background: #fff;
	color: var(--color-text-black);
	border-radius: clamp(4.8rem, 9vw, 7rem);
	position: relative;
	overflow: hidden;
}

.bl_showcase::before,
.bl_showcase::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: var(--color-base-red);
	border-radius: 50%;
	opacity: 0.15;
	z-index: 0;
}

.bl_showcase::before {
	top: -150px;
	left: -100px;
}

.bl_showcase::after {
	bottom: -180px;
	right: -120px;
}

.bl_showcase > .l_inner {
	position: relative;
	z-index: 1;
}

.bl_showcase__header {
	text-align: center;
	margin-inline: auto;
}

.bl_showcase__title {
	margin: 0 auto 2rem;
	line-height: 1;
}

.bl_showcase__title img {
	display: block;
	/* width: min(19rem, 62vw); */
	height: auto;
	margin-inline: auto;
}

.bl_showcase__lead {
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: var(--type-size-lead);
	line-height: 1.4;
	padding-bottom: 0.5rem;
}

.bl_showcase__lead-highlight {
	color: var(--color-base-orange);
}

.u-br-tb-down {
	display: none;
}

.u-br-pc-only {
	display: inline;
}

.u-br-sp-only {
	display: none;
}

/* Scroll reveal: ビューイン時にふわっと表示 */
body.is-reveal-ready .js-fade-in {
	opacity: 0;
	transform: translate3d(0, clamp(0.9rem, 1.8vw, 1.4rem), 0);
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

body.is-reveal-ready .js-fade-in.is-inview {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	body.is-reveal-ready .js-fade-in,
	body.is-reveal-ready .js-fade-in.is-inview {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.bl_showcase__desc {
	font-size: var(--type-size-body-lg);
}

.bl_showcase__gallery {
	margin-top: 3rem;
	width: 80%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 2.4vw, 2.7rem);
	overflow-x: clip;
}

.bl_showcase__card {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	width: 100%;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.bl_showcase__card:focus-visible {
	outline: 3px solid var(--color-base-red);
	outline-offset: 4px;
}

.bl_showcase__media {
	position: relative;
	width: 100%;
	aspect-ratio: 781 / 606;
	border-radius: clamp(1.5rem, 3vw, 2.1rem);
	overflow: hidden;
	margin: 0;
}

.bl_showcase__media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.42) 100%);
	z-index: 1;
	pointer-events: none;
}

.bl_showcase__media img {
	position: absolute;
	inset: 0;
	margin: auto;

	object-fit: contain;
}

.bl_showcase__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bl_showcase__meta {
	font-family: 'Corporate Logo Bold ver2', 'Corporate Logo Medium ver2', 'Corporate Logo Backup Rounded', var(--font-fallback);
	font-weight: 700;
	font-size: var(--type-size-showcase-meta);
	line-height: 1;
	color: var(--color-base-red);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.bl_showcase__card:nth-child(2) .bl_showcase__meta {
	color: var(--color-base-orange);
}

.bl_showcase__caption {
	font-family: var(--font-sub);
	font-size: var(--type-size-body-lg);
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.bl_showcase__action {
	position: absolute;
	right: clamp(0.5rem, 1vw, 1rem);
	bottom: clamp(0.5rem, 1vw, 1rem);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: clamp(0.55rem, 1.1vw, 1rem);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--color-surface-white);
	font-weight: 700;
	font-size: var(--type-size-showcase-action);
	line-height: 1;
	cursor: pointer;
}

.bl_showcase__action::after {
	content: '';
	width: clamp(2.3rem, 4vw, 3.25rem);
	aspect-ratio: 1 / 1;
	background: url('images/top/arrow_white.svg') center / contain no-repeat;
	flex: 0 0 auto;
}

/* Direct shops section */
.bl_direct-shops {
	background-color: var(--color-base-red);
	color: var(--color-surface-white);
	position: relative;
	overflow: hidden;
	margin-top: 4rem;
}

.bl_direct-shops::before {
	content: 'OKA';
	position: absolute;
	top: 15%;
	right: 5%;
	font-family: var(--font-display);
	font-size: var(--type-size-watermark-lg);
	opacity: 0.08;
}

.bl_direct-shops::after {
	content: 'SHO';
	position: absolute;
	bottom: 10%;
	left: 5%;
	font-family: var(--font-display);
	font-size: var(--type-size-watermark-lg);
	opacity: 0.08;
}

.bl_direct-shops > .l_inner {
	position: relative;
	z-index: 1;
}

.bl_direct-shops__header {
	text-align: center;

	margin-inline: auto;
}

.bl_direct-shops__title {
	margin: 0 auto 1rem;
	line-height: 1;
}

.bl_direct-shops__title img {
	display: block;
	/* width: min(14rem, 48vw); */
	height: auto;
	margin-inline: auto;
}

.bl_direct-shops__lead {
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: clamp(1rem, 1.55vw, 1.2rem);
	line-height: 1.4;
}

.bl_direct-shops__lead-highlight {
	color: var(--color-base-yellow);
}

.bl_direct-shops__grid {
	margin-top: 3rem;
	display: grid;
	gap: clamp(1.2rem, 2.1vw, 2rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: visible;
}

.bl_direct-shops__card {
	--direct-card-border-color: rgba(255, 255, 255, 0.82);
	--direct-card-border-width: 2px;
	--direct-card-border: var(--direct-card-border-width) solid var(--direct-card-border-color);
	--direct-card-after-left-overhang: 0px;
	--direct-card-after-right-overhang: 0px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: clamp(2.4rem, 3.5vw, 3rem);
	padding: clamp(1.15rem, 1.8vw, 1.8rem);
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-areas:
		'media media'
		'meta name';
	column-gap: clamp(0.8rem, 1.35vw, 1.2rem);
	row-gap: clamp(0.85rem, 1.35vw, 1.2rem);
	align-items: center;
	border: 0;
}

.bl_direct-shops__card > * {
	position: relative;
	z-index: 1;
}

.bl_primary-zone .bl_direct-shops__card::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(var(--direct-card-after-left-overhang) * -1);
	right: calc(var(--direct-card-after-right-overhang) * -1);
	border: var(--direct-card-border);
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.bl_direct-shops__card:nth-child(odd) {
	--direct-card-after-left-overhang: 9999px;
}

.bl_direct-shops__card:nth-child(even) {
	--direct-card-after-right-overhang: 9999px;
}

.bl_direct-shops__media {
	grid-area: media;
	width: min(100%, 54.2015rem);
	aspect-ratio: 542.0146 / 314.8248;
	border-radius: clamp(1.25rem, 2.1vw, 2rem);
	background: rgba(0, 0, 0, 0.15);
	margin: 0 auto;
}

.bl_direct-shops__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.bl_direct-shops__meta {
	grid-area: meta;
	display: inline-flex;
	align-self: flex-start;
	padding: 0.6rem 0.8rem;
	border-radius: 0;
	background: #efb2bc;
	color: var(--color-text-black);
	font-weight: 700;
	font-size: clamp(1rem, 1.05vw, 1.2rem);
	line-height: 1;
}

.bl_direct-shops__name {
	grid-area: name;
	margin: 0;
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: clamp(0.92rem, 1vw, 1.05rem);
	line-height: 1.25;
}

.bl_direct-shops__name span {
	font-family: var(--font-sub);
	font-size: 0.84em;
}

/* Space section */
.bl_space {
	background: var(--color-base-red);
	color: var(--color-text-black);
	width: 100%;
	max-width: 100vw;
	margin-inline: auto;
	position: relative;
	overflow: visible;
}

.bl_space > .l_inner {
	max-width: 100%;
	padding-inline: 0;
	padding-block: clamp(4rem, 8vw, 6.5rem);
	background: var(--color-surface-white);
	border-radius: clamp(4.8rem, 9vw, 7rem);
	overflow: hidden;
}

.bl_space__header {
	text-align: center;
	margin-inline: auto;
}

.bl_space__title {
	margin: 0 auto 1rem;
	line-height: 1;
}

.bl_space__title img {
	display: block;
	/* width: min(25.5rem, 80vw); */
	height: auto;
	margin-inline: auto;
}

.bl_space__lead {
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: var(--type-size-lead);
	line-height: 1.4;
}

.bl_space__lead-highlight {
	color: var(--color-base-orange);
}

.bl_space__carousel {
	--space-card-gap: clamp(1rem, 1.7vw, 1.6rem);
	margin-top: 3rem;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, calc((100% - (var(--space-card-gap) * 2)) / 2.75));
	gap: var(--space-card-gap);
	align-items: start;
	overflow: hidden;
}

.bl_space__carousel.is-space-slider {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	padding-inline: 0;
	box-sizing: border-box;
}

.bl_space__carousel.is-space-slider .swiper-wrapper {
	align-items: stretch;
	transition-timing-function: linear;
}

.bl_space__carousel.is-space-slider .swiper-slide {
	height: auto;
}

.bl_space__card {
	position: relative;
	aspect-ratio: 419.9499 / 587.2064;
	border-radius: 1.2rem;
	overflow: hidden;
	padding: 0;
	background: transparent;
	color: inherit;
	text-decoration: none;
}

.bl_space__card:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.bl_space__carousel.is-space-slider .bl_space__card {
	min-width: 0;
}

.bl_space__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: center / cover no-repeat;
	margin: 0;
	overflow: hidden;
}

.bl_space__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(62, 58, 57, 0.52);
	pointer-events: none;
}

.bl_space__card:nth-child(4n + 1) .bl_space__media {
	background-image: url('images/top/space/space_minoboul@2x-100.webp');
}

.bl_space__card:nth-child(4n + 2) .bl_space__media {
	background-image: url('images/top/space/space_wakuwaku_wajima@2x-100.webp');
}

.bl_space__card:nth-child(4n + 3) .bl_space__media {
	background-image: url('images/top/space/space_2f@2x-100.webp');
}

.bl_space__card:nth-child(4n + 4) .bl_space__media {
	background-image: url('images/top/space/space_daiei_rokko@2x-100.webp');
}

.bl_space__card::before {
	content: none;
}

.bl_space__caption {
	position: absolute;
	left: clamp(0.9rem, 1.4vw, 1.4rem);
	right: clamp(3.6rem, 6vw, 4.8rem);
	bottom: clamp(0.9rem, 1.4vw, 1.3rem);
	z-index: 2;
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: clamp(1.1rem, 1.35vw, 1.55rem);
	line-height: 1.2;
	color: var(--color-surface-white);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.bl_space__action {
	position: absolute;
	right: clamp(0.85rem, 1.3vw, 1.25rem);
	bottom: clamp(0.85rem, 1.3vw, 1.15rem);
	z-index: 2;
	width: 3.0302rem;
	aspect-ratio: 1 / 1;
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.bl_space__action::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url('images/top/arrow_white.svg') center / contain no-repeat;
}

/* Guides section */
.bl_guides {
	background-color: var(--color-base-red);
	color: var(--color-surface-white);
	position: relative;
	overflow: hidden;
}

.bl_guides > .l_inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 0;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
	padding-inline: clamp(1.5rem, 3.8vw, 4rem);
}

.bl_guides__header {
	position: relative;
	flex: 0 0 clamp(14rem, 28vw, 24rem);
	display: flex;
	justify-content: center;
	z-index: 0;
}

.bl_guides__circle {
	width: clamp(13.4rem, 29vw, 27rem);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #bb0003;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1.35rem, 3.2vw, 2.6rem);
	text-align: center;
}

.bl_guides__title {
	margin: 0;
	line-height: 1;
	width: min(100%, 27.2rem);
	transform: translateX(clamp(-1.1rem, -1.8vw, -0.45rem));
}

.bl_guides__title img {
	display: block;
	width: 100%;
	height: auto;
}

.bl_guides__subtitle {
	display: none;
}

.bl_guides__intro {
	display: none;
}

.bl_guides__list {
	position: relative;
	z-index: 1;
	min-width: 0;
	flex: 0 0 auto;
	width: fit-content;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin-left: clamp(-2.8rem, -5.5vw, -2.8rem);
}

.bl_guides__item {
	position: relative;
	display: grid;
	grid-template-columns: clamp(2rem, 3.2vw, 3.0019rem) minmax(0, 1fr);
	align-items: center;
	column-gap: clamp(0.95rem, 1.7vw, 1.5rem);
	width: fit-content;
	max-width: 100%;
	min-height: clamp(3.6rem, 5.6vw, 4.8rem);
	padding: clamp(0.6rem, 1vw, 0.85rem) 0;
	font-weight: 700;
	color: inherit;
	background: transparent;
	transition: transform var(--transition-base);
}

.bl_guides__item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 1px, transparent 1px 4px);
}

.bl_guides__item:last-child::after {
	content: none;
}

.bl_guides__item:hover,
.bl_guides__item:focus-visible {
	transform: translateX(6px);
}

.bl_guides__icon {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: url('images/top/arrow_yellow.svg') center / contain no-repeat;
}

.bl_guides__text {
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: var(--type-size-guides-item);
	line-height: 1.2;
	letter-spacing: 0.01em;
}

@media (min-width: 1025px) {
	.bl_guides__text {
		white-space: nowrap;
	}
}

/* Tablet breakpoint (<=1200px) */
@media (max-width: 1200px) {
	.bl_header__top {
		height: 140px;
	}

	.bl_header__branding img {
		width: var(--header-logo-width-tablet);
		max-width: var(--header-logo-width-tablet);
	}
}

/* Tablet/mobile shared breakpoint (<=1024px) */
@media (max-width: 1024px) {
	.u-br-tb-down {
		display: inline;
	}

	.u-br-pc-only {
		display: none;
	}

	.bl_header {
		position: sticky;
		top: 0;
		z-index: 45;
	}

	.bl_header__top {
		height: auto;
		padding-block: 14px 12px;
		position: relative;
	}

	.bl_header__inner {
		padding-inline: 24px;
	}

	.bl_header__top-layout {
		display: grid;
		grid-template-columns: minmax(180px, 300px) minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 1rem;
		row-gap: 0.75rem;
	}

	.bl_header__branding img {
		width: min(var(--header-logo-width-tablet), 100%);
		max-width: var(--header-logo-width-tablet);
	}

	.bl_header__nav-groups {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.bl_header__top-nav {
		justify-content: center;
	}

	.bl_header__right {
		width: 100%;
		align-items: center;
		justify-content: center;
		gap: 0;
	}

	.bl_header__call {
		width: 100%;
		min-width: 0;
		align-items: center;
		gap: 0.25rem;
	}

	.bl_header__call-main {
		justify-content: center;
	}

	.bl_header__telblock {
		flex-direction: column;
		gap: 0.35rem;
		align-items: center;
	}

	.bl_header__tel-link img {
	}

	.bl_header__note,
	.bl_header__cta {
		display: none;
	}

	.bl_header__hamburger {
		display: inline-flex;
		width: clamp(56px, 6vw, 64px);
		height: clamp(44px, 4.8vw, 50px);
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: clamp(8px, 1vw, 10px);
		cursor: pointer;
		justify-self: end;
	}

	.bl_header__hamburger-line {
		display: block;
		width: clamp(32px, 3.6vw, 40px);
		height: clamp(2px, 0.28vw, 3px);
		border-radius: 999px;
		background-color: var(--color-text-black);
		transition:
			transform 0.25s ease,
			opacity 0.25s ease;
	}

	.bl_header__menu-wrap {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		width: 100%;
		padding: 14px 24px 24px;
		background-color: var(--color-base-yellow);
		border-top: 1px solid rgba(35, 24, 21, 0.24);
		box-shadow: 0 14px 28px rgba(35, 24, 21, 0.14);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 0.25s ease,
			transform 0.25s ease,
			visibility 0s linear 0.25s;
	}

	.bl_header__nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
	}

	.bl_header__nav-link {
		width: 100%;
		justify-content: flex-start;
		padding: 0.6rem 1.2rem;
		font-size: 1rem;
	}

	/* SP専用メニューのスタイル */
	.bl_header__sp-menu-wrap {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--sp-menu-bg);
		backdrop-filter: blur(10px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity var(--menu-transition-duration) var(--menu-transition-easing),
			transform var(--menu-transition-duration) var(--menu-transition-easing),
			visibility 0s linear var(--menu-transition-duration);
		z-index: 1000;
		overflow-y: auto;
	}

	.bl_header__sp-nav-list {
		display: inline-block;
		text-align: left;
		list-style: none;
		margin: 0;
		padding: 0;
	}

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

	.bl_header__sp-nav-item {
		margin-bottom: var(--sp-menu-nav-gap);
	}

	.bl_header__sp-nav-item:last-child {
		margin-bottom: 0;
	}

	.bl_header__sp-nav-link {
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: flex-start;
		font-size: var(--sp-menu-nav-font-size);
		font-weight: 700;
		color: var(--color-text-black);
		text-decoration: none;
		position: relative;
		border: none;
		background: none;
		border-radius: 0;
	}

	.bl_header__sp-nav-link::before {
		content: '■';
		color: var(--sp-menu-icon-color);
		margin-right: 0.5rem;
		font-size: var(--sp-menu-icon-size);
	}

	/* SPメニューのヘッダー部分 */
	.bl_header__sp-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 1.5rem;
		padding: 0 1.5rem;
	}

	.bl_header__sp-logo img {
		height: 36px;
		width: auto;
	}

	.bl_header__sp-logo a {
		display: inline-block;
		transition: opacity var(--menu-hover-transition);
	}

	.bl_header__sp-logo a:hover {
		opacity: 0.8;
	}

	.bl_header__sp-close {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		background: transparent;
		border: none;
		cursor: pointer;
		transition:
			transform var(--menu-hover-transition),
			opacity var(--menu-hover-transition);
	}

	.bl_header__sp-close:hover {
		transform: scale(1.05);
		opacity: 0.8;
	}

	.bl_header__sp-close img {
		display: block;
		height: auto;
	}

	/* SPメニューのアクションボタン */
	.bl_header__sp-actions {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-top: var(--sp-menu-section-gap);
	}

	.bl_header__sp-btn {
		display: block;
		width: 100%;
		max-width: 16rem;
		margin: 0 auto;
		transition:
			transform var(--menu-hover-transition),
			opacity var(--menu-hover-transition);
		text-decoration: none;
	}

	.bl_header__sp-btn:hover {
		transform: translateY(-2px);
		opacity: 0.9;
	}

	.bl_header__sp-btn img {
		width: 100%;
		height: auto;
		display: block;
	}

	/* SPメニューの連絡先情報 */
	.bl_header__sp-contact {
		margin-top: var(--sp-menu-section-gap);
		padding-top: 1.5rem;
		text-align: center;
	}

	.bl_header__sp-contact img {
		width: 100%;
		max-width: 16rem;
		height: auto;
		display: block;
		margin: 0 auto;
	}

	.bl_header.isMenuOpen .bl_header__menu-wrap {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.bl_hero {
		min-height: 560px;
	}

	.bl_hero__copy {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 72px 32px;
	}

	.bl_hero__keywords {
		text-align: left;
		align-items: flex-start;
	}

	.bl_hero__vertical--right {
		display: none;
	}

	.bl_overview__content {
		display: flex;
		flex-direction: column;
		gap: 1.4rem;
		padding-bottom: 0;
	}

	.bl_overview__cards {
		width: 100%;
	}

	.bl_overview__card--half,
	.bl_overview__card--wide,
	.bl_overview__card--narrow {
		flex-basis: calc((100% - var(--overview-cards-gap)) / 2);
	}

	.bl_overview__card {
		min-height: 14.8rem;
	}

	@media (max-width: 768px) {
		.bl_overview__card {
			min-height: auto;
		}
	}

	.bl_overview__card-title {
		padding-inline: 0.9rem;
	}

	.bl_overview__card:not(.bl_overview__card--lower) .bl_overview__card-title {
		margin-top: 0.6rem;
	}

	.bl_overview__card-purpose {
		justify-content: flex-end;
		gap: 0.35rem;
	}

	.bl_overview__card-number {
		top: 0.9rem;
		left: 1rem;
		width: min(5.1rem, 30%);
	}

	/* タブレット: カードごとに番号の絶対配置を個別指定 */
	.bl_overview__card-number--01 {
		top: -0.95rem;
		left: 0.15rem;
		right: auto;
		bottom: auto;
	}

	.bl_overview__card-number--02 {
		top: 0.7rem;
		right: 0.8rem;
		left: auto;
		bottom: auto;
	}

	.bl_overview__card-number--03 {
		top: 0.75rem;
		left: 0.55rem;
		right: auto;
		bottom: auto;
	}

	.bl_overview__card-number--04 {
		top: 0.75rem;
		right: 0.5rem;
		left: auto;
		bottom: auto;
	}

	.bl_overview__card-tag {
		font-size: 0.8rem;
	}

	.bl_overview__card-tag::before,
	.bl_overview__card-tag::after {
		content: none;
	}

	.bl_overview__panel {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		transform: translateY(var(--overview-panel-lift));
		pointer-events: auto;
		display: flex;
		flex-direction: column-reverse;
		gap: 0.5rem;
		margin-inline: auto;
		border-width: 0.45rem;
		border-radius: 2.8rem;
		padding: 1.9rem 2rem;
	}

	.bl_overview__cta {
		display: block;
		width: fit-content;
		margin-inline: auto;
	}

	.bl_overview__panel-visual {
		max-width: 11.5rem;
	}

	.bl_overview__panel-visual::before {
		top: clamp(-0.55rem, -0.9vw, -0.2rem);
		right: clamp(-2.2rem, -3.4vw, -1.2rem);
		width: clamp(4.2rem, 13vw, 6.2rem);
		transform: none;
	}

	.bl_products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.8rem;
	}

	.bl_products__item:nth-child(n) {
		grid-column: auto;
		--products-item-height: 13.5rem;
	}

	.bl_products__item-media {
		min-height: 0;
	}

	.bl_products__item-media img {
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		object-position: center;
	}

	.bl_showcase__gallery {
		grid-template-columns: 1fr;
	}

	.bl_showcase {
		border-radius: calc(3.2 * 1rem);
	}

	.bl_showcase__lead,
	.bl_direct-shops__lead {
		font-size: clamp(1.05rem, 2.2vw, 1.5rem);
		line-height: 1.4;
	}

	.bl_direct-shops__lead {
		font-size: clamp(0.96rem, 1.8vw, 1.15rem);
	}

	.bl_showcase__desc {
		font-size: 1.25rem;
		line-height: 1.6;
	}

	.bl_showcase__meta {
		font-size: clamp(1.45rem, 5.8vw, 2.2rem);
	}

	.bl_showcase__caption {
		font-size: 1.35rem;
	}

	.bl_showcase__action {
		font-size: clamp(1.25rem, 3.9vw, 2rem);
	}

	.bl_showcase__action::after {
		width: clamp(2rem, 6vw, 2.9rem);
	}

	.bl_direct-shops__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bl_direct-shops__card {
		padding: 1rem;
		border-radius: 2.05rem;
		--direct-card-after-left-overhang: 0px;
		--direct-card-after-right-overhang: 0px;
	}

	.bl_direct-shops__card:nth-child(odd) {
		--direct-card-after-left-overhang: clamp(3.6rem, 9vw, 6.8rem);
		--direct-card-after-right-overhang: 0px;
	}

	.bl_direct-shops__card:nth-child(even) {
		--direct-card-after-left-overhang: 0px;
		--direct-card-after-right-overhang: clamp(3.6rem, 9vw, 6.8rem);
	}

	.bl_direct-shops__media {
		width: 100%;
	}

	.bl_direct-shops__meta {
		font-size: 1.02rem;
		padding: 0.32rem 0.72rem;
	}

	.bl_direct-shops__name {
		font-size: 1.05rem;
	}

	.bl_space__carousel {
		grid-auto-flow: row;
		grid-auto-columns: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: visible;
	}

	.bl_space > .l_inner {
		padding-block: clamp(3rem, 7vw, 4.8rem);
	}

	.bl_space__caption {
		right: 3.4rem;
		font-size: 1.15rem;
	}

	.bl_space__action {
		width: 2.2rem;
	}

	.bl_guides > .l_inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: clamp(1.4rem, 3.8vw, 2.2rem);
		width: fit-content;
		max-width: 100%;
		margin-inline: auto;
	}

	.bl_guides__header {
		flex: 0 1 auto;
		width: fit-content;
		max-width: 100%;
	}

	.bl_guides__circle {
		width: clamp(10.5rem, 30vw, 16rem);
		padding: clamp(1rem, 2.8vw, 1.6rem);
	}

	.bl_guides__title {
		width: min(100%, 19.5rem);
	}

	.bl_guides__list {
		width: fit-content;
		max-width: 100%;
		margin-left: 0;
	}

	.bl_guides__item {
		min-height: clamp(3.2rem, 6.2vw, 4.2rem);
	}

	.bl_guides__icon {
		width: clamp(1.9rem, 5vw, 2.6rem);
	}

	.bl_guides__text {
		font-size: clamp(1.15rem, 2.6vw, 1.5rem);
	}

	.bl_footer {
		padding-top: clamp(2.6rem, 7vw, 3.8rem);
	}

	.bl_footer__top {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.bl_footer__brand {
		justify-self: center;
		align-items: center;
		margin-inline: auto;
		padding-right: 0;
	}

	.bl_footer__contact {
		border-left: 0;
		border-top: 0;
		border-bottom: 1px solid rgba(35, 24, 21, 0.55);
		padding-left: 0;
		padding-top: 1.2rem;
	}

	.bl_footer__menus {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			'main products'
			'main examples'
			'stores stores';
	}
}

@media (max-width: 1024px) {
	.u-br-sp-only {
		display: inline;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	body {
		font-size: 15px;
	}

	section {
		padding-block: var(--space-section-sm);
	}

	.bl_blog {
		padding-block: calc(2.5 * 1rem) calc(4.2 * 1rem);
		border-radius: 0 0 3.5rem 3.5rem;
	}

	.l_inner {
		padding-inline: 24px;
	}

	.bl_header__inner {
		padding-inline: 16px;
	}

	.bl_header__top-layout {
		grid-template-columns: minmax(60px, 120px) minmax(0, 1fr) auto;
		column-gap: 0.65rem;
		row-gap: 0.5rem;
	}

	.bl_header__top {
		padding-block: 14px 10px;
	}

	

	.bl_header__tel-link img {
		width: var(--header-tel-width-mobile);
	}

	.bl_header__hours {
		font-size: clamp(0.66rem, 2.5vw, 0.9rem);
	}

	.bl_header__hamburger {
		width: 56px;
		height: 44px;
		gap: 9px;
	}

	.bl_header__hamburger-line {
		width: 32px;
		height: 2px;
	}

	.bl_header__menu-wrap {
		padding: 12px 16px 18px;
	}

	.bl_hero {
		min-height: 520px;
	}

	.bl_hero__copy {
		grid-template-columns: 1fr;
		align-content: center;
		padding: 64px 20px 40px;
		gap: 1rem;
	}

	.bl_hero__vertical {
		writing-mode: horizontal-tb;
		text-orientation: initial;
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.bl_hero__vertical--left {
		order: 2;
	}

	.bl_hero__vertical--right {
		display: none;
	}

	.bl_hero__heading {
		font-size: clamp(1.45rem, 7vw, 2.1rem);
		gap: 0.9rem;
	}

	.bl_hero__arrow {
		width: 44px;
		height: 44px;
	}

	.bl_hero__arrow--prev {
		left: 12px;
	}

	.bl_hero__arrow--next {
		right: 12px;
	}

	.bl_overview__panel-visual::before {
		top: clamp(-0.4rem, -1.4vw, -0.1rem);
		right: clamp(-2.4rem, -9.8vw, 0.2rem);
		width: clamp(3.5rem, 20vw, 4.8rem);
	}

	.bl_overview__card-title {
		padding-inline: 0.4rem;
	}

	.bl_overview__card:not(.bl_overview__card--lower) .bl_overview__card-title {
		margin-top: 0.45rem;
	}

	.bl_overview__card-number {
		width: min(4.6rem, 34%);
	}

	/* SP: カードごとに番号の絶対配置を個別指定 */
	.bl_overview__card-number--01 {
		top: -0.75rem;
		left: 0.05rem;
		right: auto;
		bottom: auto;
	}

	.bl_overview__card-number--02 {
		top: 1.55rem;
        right: -0.5rem;
        left: auto;
        bottom: auto;
	}

	.bl_overview__card-number--03 {
		top: 0.6rem;
		left: 0.35rem;
		right: auto;
		bottom: auto;
	}

	.bl_overview__card-number--04 {
top: -0.4rem;
        right: 0.3rem;
        left: auto;
        bottom: auto;
	}

	.bl_products__grid {
		grid-template-columns: repeat(20, minmax(0, 1fr));
	}

	.bl_products__item {
		min-height: clamp(12.8rem, 42vw, 15.2rem);
		aspect-ratio: 1 / 1.14;
		padding: clamp(2.4rem, 8.6vw, 3rem) clamp(0.7rem, 2.4vw, 1rem) clamp(0.7rem, 2.4vw, 1rem);
		gap: clamp(0.45rem, 1.8vw, 0.7rem);
	}

	.bl_products__item-media {
		flex: 1 1 auto;
		min-height: 0;
		height: 100%;
		margin: clamp(0.7rem, 2.6vw, 1rem) 0;
	}

	.bl_products__item-media img {
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		object-position: center;
	}

	.bl_products__item:nth-child(n) {
		grid-column: span 10;
	}

	/* 偶数行（2行目・4行目…）だけ左をやや広く、右をやや狭くする */
	.bl_products__item:nth-child(4n - 1) {
		grid-column: span 11;
	}

	.bl_products__item:nth-child(4n) {
		grid-column: span 9;
	}

	.bl_products__item-tag {
		padding: 0.2rem 0.5rem;
		font-size: 0.8rem;
		border-radius: 0 0 10px 0;
	}

	.bl_products__item-action {
		width: calc(24 / 16 * 1rem);
		height: calc(21.375 / 16 * 1rem);
		position: absolute;
		right: clamp(0.3rem, 1.2vw, 0.5rem);
		bottom: clamp(0.3rem, 1.2vw, 0.5rem);
		align-self: auto;
	}

	.bl_showcase__gallery {
		grid-template-columns: 1fr;
	}

	.bl_showcase__lead {
		font-size: 1.4rem;
	}

	.bl_showcase__desc {
		font-size: 1.05rem;
		line-height: 1.55;
	}

	.bl_showcase__meta {
		font-size: clamp(1rem, 5vw, 1.45rem);
	}

	.bl_showcase__caption {
		font-size: clamp(0.6rem, 3vw, 0.8rem);
	}

	.bl_showcase__action {
		font-size: clamp(0.72rem, 3.9vw, 1.05rem);
		gap: clamp(0.3667rem, 0.7333vw, 0.6667rem);
	}

	.bl_showcase__action::after {
		width: clamp(1.2rem, 6vw, 1.4667rem);
	}

	.bl_direct-shops__grid {
		grid-template-columns: 1fr;
	}

	.bl_direct-shops__card {
		padding: 0.95rem;
		border-radius: 1.7rem;
		--direct-card-after-left-overhang: 0px;
		--direct-card-after-right-overhang: 0px;
	}

	.bl_direct-shops__card:nth-child(odd) {
		--direct-card-after-left-overhang: clamp(2.4rem, 10vw, 4.4rem);
		--direct-card-after-right-overhang: 0px;
	}

	.bl_direct-shops__card:nth-child(even) {
		--direct-card-after-left-overhang: 0px;
		--direct-card-after-right-overhang: clamp(2.4rem, 10vw, 4.4rem);
	}

	.bl_direct-shops__meta {
		font-size: clamp(0.9rem, 3.5vw, 1rem);
	}

	.bl_direct-shops__name {
		font-size: clamp(0.88rem, 3.4vw, 0.98rem);
	}

	.bl_space__carousel {
		grid-auto-flow: row;
		grid-auto-columns: auto;
		grid-template-columns: 1fr;
		overflow: visible;
		margin-top: calc(20 / 16 * 1rem);
	}

	.bl_space__carousel.is-space-slider .swiper-slide {
		width: min(44.4445vw, 10.667rem);
	}

	.bl_space > .l_inner {
		padding-top: clamp(2.2rem, 8vw, 3.6rem);
		padding-bottom: calc(clamp(2.2rem, 8vw, 3.6rem) * 1.2);
		border-radius: clamp(2.2rem, 6vw, 3.2rem);
	}

	.bl_space__caption {
		right: 3.1rem;
		font-size: 1.05rem;
	}

	.bl_space__action {
		width: 2rem;
	}

	.bl_guides > .l_inner {
		row-gap: 1.25rem;
	}

	.bl_guides__header {
		flex: 0 1 auto;
		width: fit-content;
		max-width: 100%;
	}

	.bl_guides__circle {
		width: min(62vw, 13.2rem);
		padding: 0.8rem;
	}

	.bl_guides__title {
		width: min(100%, 15.5rem);
		margin-left: 0;
		transform: translateX(clamp(0.9rem, 3vw, 1.4rem));
	}

	.bl_guides__item {
		grid-template-columns: 0.95rem minmax(0, 1fr);
		column-gap: 0.85rem;
		min-height: 2.9rem;
		padding: 0.35rem 0;
	}

	.bl_guides__icon {
		width: 0.95rem;
	}

	.bl_guides__text {
		font-size: clamp(1rem, 4.8vw, 1.5rem);
		line-height: 1.24;
	}

	.bl_footer {
		padding-top: 2.4rem;
	}

	.bl_footer::before {
		border-radius: clamp(2.9rem, 10vw, 4.2rem) clamp(2.9rem, 10vw, 4.2rem) 0 0;
	}

	.bl_footer__body {
		padding-bottom: 1.6rem;
	}

	.bl_footer__logo-link {
		width: 100%;
	}

	.bl_footer__buttons {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(0.5rem, 2vw, 0.8rem);
		width: 100%;
	}

	.bl_footer__btn img {
		width: 100%;
	}

	.bl_footer__tel img {
		width: min(21rem, 100%);
	}

	.bl_footer__company {
		font-size: clamp(1.12rem, 4.2vw, 1.3rem);
	}

	.bl_footer__address {
		font-size: clamp(1rem, 3.9vw, 1.2rem);
	}

	.bl_footer__fax {
		font-size: clamp(0.9rem, 3.7vw, 1.05rem);
	}

	.bl_footer__hours {
		font-size: clamp(0.86rem, 3.58vw, 1.02rem);
	}

	.bl_footer__menus {
		grid-template-columns: 1fr;
		grid-template-areas:
			'main'
			'products'
			'examples'
			'stores';
		gap: 0.95rem;
		justify-content: flex-start;
		justify-items: start;
		margin-inline: 0;
	}

	.bl_footer__menu-title {
		font-size: clamp(0.95rem, 3.2vw, 1.05rem);
	}

	.bl_footer__menu ul {
		font-size: 0.86rem;
	}

	.bl_blog__headline {
		position: static;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	p {
		font-size: clamp(0.88rem, 3.6vw, 0.98rem);
		line-height: 1.7;
	}

	.bl_blog__lead {
		font-size: clamp(0.8rem, 3.2vw, 0.92rem);
		line-height: 1.6;
	}

	.bl_products__lead,
	.bl_showcase__lead,
	.bl_direct-shops__lead,
	.bl_space__lead {
		font-size: clamp(0.95rem, 4.2vw, 1.12rem);
		line-height: 1.5;
	}

	.bl_showcase__desc {
		font-size: clamp(0.84rem, 3.5vw, 0.95rem);
		line-height: 1.45;
	}

	.bl_blog__pickup {
		position: relative;
		width: 100%;
		height: 0;
		padding-right: clamp(0.8rem, 3vw, 1.2rem);
		margin-bottom: 0;
		pointer-events: none;
		transform: translate(-79%, 0.5rem);
	}

	.bl_blog__stage {
		--blog-main-width: min(22rem, calc(100vw - 2rem));
		margin-top: clamp(-1.6rem, 4vw, -2rem);
		padding: 0 0 clamp(0.2rem, 1.2vw, 0.5rem);
	}

	.bl_blog__pickup-badge {
		position: absolute;
		right: 0;
		top: 0;
		width: clamp(3.8rem, 15vw, 4.8rem);
		transform: translateX(calc(-30 / 16 * 1rem)) translateY(calc(-93 / 16 * 1.2rem));
	}

	.bl_blog__pickup-date {
		position: absolute;
		right: 0;
		top: 0;
		font-size: clamp(1rem, 3.2vw, 1.15rem);
		margin-top: 0;
		transform: translateX(calc(-30 / 16 * 1rem)) translateY(calc(-37 / 16 * 1rem));
	}

	.bl_blog__slider-list {
		height: auto;
		min-height: 0;
	}

	.bl_blog__slider-item {
		position: relative;
		left: auto;
		top: auto;
		width: 100%;
		transform: none !important;
		display: none;
	}

	.bl_blog__slider-item.is-pos-0 {
		display: block;
	}

	.bl_blog__slider-item.is-pos-0[data-url] {
		box-sizing: border-box;
		padding-inline: calc((40 / 16) * 1rem);
	}

	.bl_blog__slider-item.is-pos-0 .bl_blog__body {
		max-height: 20rem;
	}

	.bl_blog__controls {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		margin-top: 1rem;
	}

	.bl_blog__control {
		width: calc(4.55rem * 0.7);
		height: calc(3.1rem * 0.7);
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.bl_header__sp-nav-link {
		font-size: clamp(1.05rem, 2.1vw, 1.2rem);
		line-height: 1.35;
	}

	.bl_header__sp-nav-link::before {
		font-size: clamp(0.75rem, 1.3vw, 0.9rem);
		margin-right: clamp(0.4rem, 1vw, 0.55rem);
	}

	.bl_header__sp-nav-item {
		margin-bottom: clamp(0.75rem, 1.8vw, 1rem);
	}

	.l_inner {
		padding-inline: clamp(1.5rem, 4vw, 2rem);
	}

	section {
		padding-block: clamp(4rem, 6vw, 5rem);
	}

	.bl_blog {
		padding-block: clamp(2.2rem, 5vw, 3rem) clamp(10rem, 14vw, 13rem);
	}

	.bl_blog__controls {
		bottom: -8rem;
	}

	.bl_blog__slider-list {
		margin-top: calc(clamp(-1.8rem, -3.5vw, -1rem) - 1.875rem);
	}

	.bl_blog__pickup-badge {
		transform: translateX(calc(3 * 1rem)) translateY(calc((33 / 16) * 1rem));
	}

	.bl_blog__pickup-date {
		transform: translateY(calc((40 / 16) * 1rem));
	}

	.bl_products__grid {
		gap: clamp(1rem, 2.2vw, 1.4rem);
	}

	.bl_showcase {
		border-radius: clamp(3.2rem, 6vw, 4.8rem);
	}

	.bl_showcase__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 92%;
		gap: clamp(1rem, 2vw, 1.6rem);
	}

	.bl_showcase__meta {
		font-size: clamp(1.35rem, 3.6vw, 1.9rem);
	}

	.bl_showcase__caption {
		font-size: clamp(1rem, 2.2vw, 1.2rem);
	}

	.bl_direct-shops__grid {
		gap: clamp(1rem, 2vw, 1.5rem);
	}

	.bl_space > .l_inner {
		padding-block: clamp(2.8rem, 6vw, 4rem);
		border-radius: clamp(3.2rem, 6vw, 4.8rem);
	}

	.bl_space__carousel.is-space-slider .swiper-slide {
		width: min(25.3333vw, 12.6667rem) !important;
	}

	.bl_guides > .l_inner {
		gap: clamp(1.2rem, 2.4vw, 1.8rem);
	}

	.bl_guides__header {
		justify-content: center;
	}

	.bl_guides__circle {
		width: clamp(12.5rem, 33vw, 19rem);
		padding: clamp(1.1rem, 2.6vw, 1.9rem);
		margin-left: clamp(-0.6rem, -1.4vw, -0.2rem);
	}

	.bl_guides__text {
		font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	}

	.bl_footer__top {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
		gap: clamp(0.55rem, 1.2vw, 0.9rem);
	}

	.bl_footer__contact {
		border-left: 1px solid rgba(35, 24, 21, 0.55);
		border-bottom: 0;
		padding-left: clamp(0.7rem, 1.2vw, 1rem);
		padding-top: 0;
	}

	.bl_footer__menus {
		grid-template-columns: repeat(2, minmax(0, max-content));
		justify-content: flex-start;
		margin-inline: 0;
	}
}

/* ------------------------------
   Media Arts Style Hero (KV)
------------------------------ */
section.t-hero {
	padding-block: 0;
	height: 48rem;
}
/* Hero visibility helpers */
.nopc {
	display: none;
}

.nosp {
	display: inline;
}

/* Hero shell and tokens (PC baseline) */
.t-hero {
	position: relative;
	z-index: 1;
	height: clamp(680px, 75svh, 860px);
	min-height: 680px;
	overflow: hidden;
	pointer-events: none;
	background: var(--color-base-yellow);
	/* Hero tokens (PC baseline) */
	--hero-copy-bottom: 1rem;
	--hero-copy-wrap-width: calc(100% - 8.4rem);
	--hero-copy-gap: 35rem;
	--hero-copy-scale: 52%;
	--hero-copy-left-max: 44.8svh;
	--hero-copy-right-max: 43.9svh;
	--hero-copy-left-width: min(var(--hero-copy-scale), var(--hero-copy-left-max));
	--hero-copy-right-width: min(var(--hero-copy-scale), var(--hero-copy-right-max));
	--hero-copy-column-width: max(var(--hero-copy-left-width), var(--hero-copy-right-width));
	--hero-text-top: min(4rem, 22.5260416667svh);
	--hero-text-gap: 36rem;
	--hero-text-copy-height: min(25.6rem, 49.7041666666svh);
	--hero-text-left-width: min(13rem, 16.96svh);
	--hero-text-right-width: min(16.6rem, 21.68svh);
	--hero-text-column-width: var(--hero-text-right-width);
	--hero-slider-top: min(5rem, 13.0208333333svh);
	--hero-slider-width: min(304px, 39.5833333333svh);
	--hero-slider-height: min(559px, 72.7864583333svh);
	--hero-nav-arrow-size: 3.6rem;
	--hero-nav-arrow-offset: 12.5rem;
	--hero-nav-arrow-scale-y: 0.84375;
}

/* Hero copy/text layers */
.t-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.t-hero__sp-copy {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	display: none;
}

.t-hero__sp-copy img {
	display: block;
	width: 100%;
	height: auto;
}

.t-hero__sp-block {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	display: none;
}

.t-hero__sp-block img {
	display: block;
	width: 100%;
	height: auto;
}

.t-hero__copy {
	position: absolute;
	inset-inline: 0;
	bottom: var(--hero-copy-bottom, 1rem);
	margin-inline: auto;
	width: var(--hero-copy-wrap-width);
	display: grid;
	grid-template-columns: var(--hero-copy-column-width) var(--hero-copy-column-width);
	justify-content: center;
	column-gap: var(--hero-copy-gap);
	align-items: end;
}

.t-hero__copy p {
	pointer-events: all;
	clip-path: inset(0 0 0);
	margin: 0;
}

.t-hero__copy p.copy01 {
	/* width: var(--hero-copy-left-width); */
	justify-self: end;
	transition: clip-path 0.5s cubic-bezier(0.39, 0.58, 0.57, 1) 0.2s;
}

.t-hero__copy p.copy02 {
	/* width: var(--hero-copy-right-width); */
	justify-self: start;
	transition: clip-path 0.5s cubic-bezier(0.39, 0.58, 0.57, 1) 0.3s;
}

.t-hero__copy p img {
	display: block;
	width: 100%;
}

.t-hero__text {
	position: absolute;
	top: var(--hero-text-top);
	left: 0;
	right: 0;
	pointer-events: none;
	display: grid;
	grid-template-columns: var(--hero-text-column-width) var(--hero-text-column-width);
	justify-content: center;
	column-gap: var(--hero-text-gap);
	align-items: start;
}

.t-hero__text p {
	flex-shrink: 0;
	pointer-events: none;
	transition: opacity 0.5s cubic-bezier(0.39, 0.58, 0.57, 1) 0.2s;
	margin: 0;
}

.t-hero__text p.copy-left {
	height: var(--hero-text-copy-height);
	width: auto;
	aspect-ratio: 142.65 / 417.22;
	max-width: var(--hero-text-left-width);
	justify-self: end;
}

.t-hero__text p.copy-right {
	height: var(--hero-text-copy-height);
	width: auto;
	aspect-ratio: 182.17 / 417.52;
	max-width: var(--hero-text-right-width);
	justify-self: start;
}

.t-hero__text p img {
	display: block;
	width: auto;
	height: 100%;
}

/* Hero movie slider */
.t-hero__movie-slider {
	position: absolute;
	width: 100%;
	top: var(--hero-slider-top);
	z-index: 1;
	pointer-events: all;
}

.t-hero__movie-slider .movie-slider {
	overflow: visible;
}

[data-custom-slider] .custom-slider-list {
	display: flex;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	perspective: 100vw;
	position: relative;
	z-index: 1;
}

[data-custom-slider] .custom-slider-item {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	margin: auto;
}

[data-custom-slider='hero'] .custom-slider {
	width: var(--hero-slider-width);
	height: var(--hero-slider-height);
	margin-inline: auto;
	position: relative;
}

.t-hero__movie-slider .movie-slider-item {
	opacity: 0.15;
	z-index: 1;
	transition:
		opacity 0.75s cubic-bezier(0.39, 0.58, 0.57, 1),
		visibility 0s ease 0.01s;
}

.t-hero__movie-slider .movie-slider-item.isShow {
	opacity: 1;
}

.t-hero__movie-slider .movie-slider-item.isHide {
	transition:
		opacity 0.75s cubic-bezier(0.39, 0.58, 0.57, 1),
		visibility 0s ease;
	visibility: hidden;
}

.t-hero__movie-slider .movie-slider-item.isActive {
	opacity: 1;
	z-index: 2;
}

.t-hero__movie-slider .movie-slider-item .media {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	translate: 0 40%;
	opacity: 0;
	clip-path: inset(0 round min(1.5rem, 2.6041666667svh));
}

.t-hero__movie-slider .movie-slider-item .media .thumbnail {
	position: absolute;
	inset: 0;
	margin: auto;
	z-index: 2;
	opacity: 1;
	transition: opacity 0.7s cubic-bezier(0.39, 0.58, 0.57, 1);
	transform: translateZ(2px);
	overflow: hidden;
	border-radius: inherit;
}

.t-hero__movie-slider .movie-slider-item .media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.t-hero__movie-slider .movie-slider-item .focus {
	transform-origin: center center;
	will-change: transform;
}

/* Shared custom slider controls */
[data-custom-slider] .custom-tool-box {
	pointer-events: none;
}

[data-custom-slider] .custom-tool-box .navigation button {
	pointer-events: all;
}

[data-custom-slider] .custom-tool-box .pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
}

[data-custom-slider] .custom-tool-box .pagination .balet {
	flex-shrink: 0;
	display: block;
	position: relative;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: all;
	transition: margin 0.5s cubic-bezier(0, 0.7, 0.32, 1.28);
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle .circle-i {
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	background-color: #fff;
	opacity: 0.5;
	border-radius: 50%;
	transition:
		opacity 0.3s cubic-bezier(0.39, 0.58, 0.57, 1),
		border-radius 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle .circle-stk {
	display: block;
	width: 2.2rem;
	height: 2.2rem;
	rotate: -90deg;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	will-change: scale;
	scale: 0.5;
	opacity: 0;
	transition:
		opacity 0.3s cubic-bezier(0.39, 0.58, 0.57, 1),
		scale 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle .circle-stk01 {
	color: rgba(255, 255, 255, 0.3);
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle .circle-stk02 {
	stroke-dasharray: 63px;
	stroke-dashoffset: 63px;
	color: #fff;
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle.isActive {
	pointer-events: none;
	margin-inline: 0.7rem;
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle.isActive .circle-i {
	opacity: 1;
	border-radius: 0;
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle.isActive .circle-stk {
	scale: 1;
	opacity: 1;
}

[data-custom-slider] .custom-tool-box .pagination .balet.circle.isActive .circle-stk02.isActive {
	animation: circle_stroke 3s linear forwards;
}

/* Hero-specific navigation and pagination layout */
[data-custom-slider='hero'] .tool-box {
	display: contents;
}

[data-custom-slider='hero'] .tool-box .pagination {
	display: none;
	position: absolute;
	height: fit-content;
	bottom: -8rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	translate: 0 100%;
}

[data-custom-slider='hero'] .tool-box .navigation {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	inset: 0;
	margin: auto;
	z-index: 2;
	scale: 1 1.1851851852;
}

[data-custom-slider='hero'] .tool-box .navigation button {
	width: 50%;
	height: 100%;
	background-color: transparent;
	border: none;
	cursor: ew-resize;
	position: relative;
}

[data-custom-slider='hero'] .tool-box .navigation button::before {
	content: '';
	position: absolute;
	top: 50%;
	width: var(--hero-nav-arrow-size);
	height: var(--hero-nav-arrow-size);
	background: url('images/top/slider_arrow.svg') center / contain no-repeat;
	pointer-events: none;
	transform: translateY(-50%) scaleY(var(--hero-nav-arrow-scale-y));
}

[data-custom-slider='hero'] .tool-box .navigation .next::before {
	transform: translateY(-50%) rotate(180deg) scaleY(var(--hero-nav-arrow-scale-y));
}

/* PC時のみ、prev/nextの矢印位置を個別に指定 */
@media (min-width: 1025px) {
	/* prev矢印は右側から 13rem */
	[data-custom-slider='hero'] .tool-box .navigation .prev::before {
		right: 13rem;
	}

	/* next矢印は左側から 13rem */
	[data-custom-slider='hero'] .tool-box .navigation .next::before {
		left: 13rem;
	}
}

/* Hero standby state transitions */
.t-hero__movie-slider .tool-box {
	transition: opacity 0.5s cubic-bezier(0.39, 0.58, 0.57, 1) 0.2s;
}

.t-hero.isStandby .t-hero__movie-slider .movie-slider-list {
	opacity: 0;
}

/* Header menu visibility switch (PC/SP) */
/* PC・SP メニュー表示制御 */
/* PCではSPメニューを非表示 */
@media (min-width: 1025px) {
	.bl_header__sp-menu-wrap {
		display: none !important;
	}
}

/* SPではPCメニューを非表示し、SPメニューを表示 */
@media (max-width: 1024px) {
	.bl_header__menu-wrap {
		display: none !important;
	}

	.bl_header.isMenuOpen .bl_header__sp-menu-wrap {
		display: block;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
	}
}
@media (max-width: 1024px) {
	section.t-hero {
		padding-block: 0;
		height: auto;
		min-height: var(--hero-section-min-height, clamp(40rem, 88vw, 64rem));
	}
}

@media (max-width: 768px) {
	section.t-hero {
		min-height: var(--hero-section-min-height, clamp(38rem, 116vw, 54rem));
	}
}

.t-hero.isStandby .t-hero__movie-slider .tool-box {
	opacity: 0;
}

.t-hero.isStandby .t-hero__text p {
	opacity: 0;
}

.t-hero.isStandby .copy01,
.t-hero.isStandby .copy02 {
	clip-path: inset(0 0 100%);
}

.t-hero.isStandbyTransition .t-hero__movie-slider .movie-slider-item {
	transition:
		opacity 0.75s cubic-bezier(0.39, 0.58, 0.57, 1),
		transform 0.3s cubic-bezier(0.39, 0.58, 0.57, 1),
		visibility 0s ease 0.01s;
}

@keyframes circle_stroke {
	to {
		stroke-dashoffset: 0;
	}
}

/* Hero/mobile layout overrides (<=1024px) */
@media screen and (max-width: 1024px) {
	.nopc {
		display: inline;
	}

	.nosp {
		display: none !important;
	}

	.t-hero {
		height: auto;
		min-height: 0;
		--hero-copy-bottom: 2.3rem;
		--hero-copy-wrap-width: calc(100% - 2.8rem);
		--hero-copy-left-width: 10.1rem;
		--hero-copy-right-width: 10.2rem;
		--hero-copy-column-width: var(--hero-copy-right-width);
		/* 400px viewport -> width: 267.1352px / height: 489.2559px */
		--hero-slider-width: clamp(16.7rem, 66.7838vw, 28rem);
		--hero-slider-height: calc(var(--hero-slider-width) * 1.8314917);
		--hero-section-min-height: clamp(40rem, calc(var(--hero-slider-height) + 11rem), 64rem);
		/* 上側は従来の基準位置を維持して、装飾の見え方を崩さない */
		--hero-slider-margin-top-mobile: calc(2.5 * 1rem);
		--hero-slider-margin-bottom-mobile: clamp(2rem, 4.8vw, 3.2rem);
		/* SPナビ: 見た目はSVGのみで作る（button本体は透明の当たり判定） */
		--hero-nav-arrow-size: 2.5rem; /* 40px相当 */
		--hero-nav-button-size: 6.8rem;
		--hero-nav-arrow-offset: 3.6rem;
		--hero-nav-arrow-scale-y: 1;
	}

	/* Mobile hero text/copy placement */
	.t-hero__overlay {
		display: none;
	}

	.t-hero__sp-copy {
		display: block;
	}

	.t-hero__sp-copy--left,
	.t-hero__sp-copy--right {
		box-sizing: content-box;
		background-color: var(--color-base-yellow);
		border-radius: 1rem;
	}

	.t-hero__sp-copy--left {
		top: calc(var(--hero-slider-margin-top-mobile) - calc(0.9 * 1rem));
		left: 1.2rem;
		width: min(4.9rem, 13.2vw);
		padding: 0 1.2rem 1rem 0;
	}

	.t-hero__sp-copy--right {
		right: 1.2rem;
		top: calc(var(--hero-slider-margin-top-mobile) + var(--hero-slider-height) - clamp(13.2rem, 33vw, 14.2rem));
		bottom: auto;
		width: min(6.8rem, 18.2vw);
		padding: 1rem 0 1rem 1.2rem;
	}

	.t-hero__sp-block {
		display: block;
	}

	.t-hero__sp-block--top-right {
		top: calc(var(--hero-slider-margin-top-mobile) - calc(2 * 1rem));
		right: 1rem;
		width: min(15.2rem, 40.2vw);
	}

	.t-hero__sp-block--bottom-left {
		left: 1rem;
		top: calc(var(--hero-slider-margin-top-mobile) + var(--hero-slider-height) - clamp(12.4rem, 31vw, 13.4rem));
		bottom: auto;
		width: min(15rem, 39.8vw);
	}

	/* Mobile slider positioning and visibility */
	.t-hero__movie-slider {
		position: relative;
		width: var(--hero-slider-width);
		top: auto;
		z-index: auto;
		margin: var(--hero-slider-margin-top-mobile) auto var(--hero-slider-margin-bottom-mobile);
	}

	/* SPは外枠でクリップして、スライド自体は角丸なしで流す */
	[data-custom-slider='hero'] .custom-slider {
		border-radius: 1.5rem;
		overflow: hidden;
	}

	.t-hero__movie-slider .movie-slider-item {
		opacity: 1;
		transition: inherit;
	}

	.t-hero__movie-slider .movie-slider-item.isHide {
		transition: inherit;
		visibility: inherit;
	}

	.t-hero__movie-slider .movie-slider-item .media {
		translate: 0 0;
		opacity: 1;
		clip-path: inset(0);
	}

	/* サブピクセルずれで出る右端の隙間を防ぐため、画像をわずかに外側へ広げる */
	.t-hero__movie-slider .movie-slider-item .media .thumbnail {
		inset: -1px;
	}

	/* Mobile pagination/navigation controls */
	[data-custom-slider='hero'] .tool-box .pagination {
		display: flex;
		width: auto;
		flex-direction: row;
		align-items: center;
		gap: 0.35rem;
		left: 50%;
		right: auto;
		bottom: -1.2rem;
		translate: -50% 0;
	}

	[data-custom-slider='hero'] .tool-box .pagination .balet.circle .circle-i {
		width: 0.32rem;
		height: 0.32rem;
	}

	[data-custom-slider='hero'] .tool-box .pagination .balet.circle .circle-stk {
		width: 1.25rem;
		height: 1.25rem;
	}

	[data-custom-slider='hero'] .tool-box .pagination .balet.isActive {
		margin: 0;
	}

	[data-custom-slider='hero'] .tool-box .navigation {
		inset: 0;
		scale: 1;
		z-index: 40;
		pointer-events: none;
	}

	[data-custom-slider='hero'] .tool-box .navigation button {
		position: absolute;
		top: 55.5%;
		width: var(--hero-nav-button-size);
		height: var(--hero-nav-button-size);
		background-color: transparent;
		border: none;
		cursor: pointer;
		transform: translateY(-50%);
		z-index: 41;
		pointer-events: all;
	}

	[data-custom-slider='hero'] .tool-box .navigation .prev {
		/* スライダー外へ出す量をviewport基準にして、左右のはみ出しを防ぐ */
		left: calc((100vw - var(--hero-slider-width)) / -2);
	}

	[data-custom-slider='hero'] .tool-box .navigation .next {
		/* スライダー外へ出す量をviewport基準にして、左右のはみ出しを防ぐ */
		right: calc((100vw - var(--hero-slider-width)) / -2);
	}

	[data-custom-slider='hero'] .tool-box .navigation .prev::before {
		background: url('images/top/slider_arrow.svg') center / contain no-repeat;
		right: calc((var(--hero-nav-button-size) - var(--hero-nav-arrow-size)) / 2);
		top: 30%;
		transform: translateY(-50%) scaleY(var(--hero-nav-arrow-scale-y));
	}

	[data-custom-slider='hero'] .tool-box .navigation .next::before {
		background: url('images/top/slider_arrow.svg') center / contain no-repeat;
		left: calc((var(--hero-nav-button-size) - var(--hero-nav-arrow-size)) / 2);
		top: 30%;
		transform: translateY(-50%) rotate(180deg) scaleY(var(--hero-nav-arrow-scale-y));
	}
}

/* Tablet-only final override: keep hero from clipping at bottom */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.t-hero {
		--hero-section-min-height: clamp(48rem, calc(var(--hero-slider-height) + 9rem), 62rem);
		--hero-slider-margin-bottom-mobile: clamp(6rem, 10vw, 8.5rem);
	}

	.t-hero__sp-copy--left {
		padding: clamp(0.9rem, 1.8vw, 1.2rem) clamp(2rem, 3.8vw, 2.6rem) clamp(1.6rem, 3vw, 2.2rem) 0;
	}

	.t-hero__sp-copy--right {
		padding: clamp(1.6rem, 3vw, 2.2rem) 0 clamp(1.6rem, 3vw, 2.2rem) clamp(2rem, 3.8vw, 2.6rem);
	}

	.t-hero__sp-copy--left {
		width: min(5.9rem, 15.6vw);
	}

	.t-hero__sp-copy--right {
		width: min(8rem, 21vw);
	}

	.t-hero__sp-block--top-right {
		width: min(17.6rem, 46vw);
	}

	.t-hero__sp-block--bottom-left {
		width: min(17.4rem, 45.5vw);
	}

	[data-custom-slider='hero'] .tool-box .navigation .prev::before,
	[data-custom-slider='hero'] .tool-box .navigation .next::before {
		width: clamp(3.2rem, 6.2vw, 3.8rem);
		height: clamp(3.2rem, 6.2vw, 3.8rem);
	}
}

/* =====================================
   Unified SVG Heading Height (Top)
   ===================================== */

.bl_blog__title,
.bl_overview__title,
.bl_products__title,
.bl_showcase__title,
.bl_direct-shops__title,
.bl_space__title,
.bl_guides__title {
	--title-h: var(--svg-title-h-top);
	height: var(--title-h);
	max-width: 100%;
	margin-inline: auto;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bl_blog__title > picture,
.bl_overview__title > picture,
.bl_products__title > picture,
.bl_showcase__title > picture,
.bl_direct-shops__title > picture,
.bl_space__title > picture,
.bl_guides__title > picture {
	height: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bl_blog__title img,
.bl_overview__title img,
.bl_products__title img,
.bl_showcase__title img,
.bl_direct-shops__title img,
.bl_space__title img,
.bl_guides__title img {
	display: block;
	width: auto !important;
	max-width: 100%;
	max-height: 100%;
	height: 100%;
	margin-inline: auto;
}

@media (max-width: 768px) {
	.bl_blog__title,
	.bl_overview__title,
	.bl_products__title,
	.bl_showcase__title,
	.bl_direct-shops__title,
	.bl_space__title,
	.bl_guides__title {
		height: var(--svg-title-h-top-sp);
		max-width: 100%;
	}
}

.is-svg-title-size-exception {
	height: auto !important;
}

.is-svg-title-size-exception > picture {
	height: auto !important;
}

.is-svg-title-size-exception img {
	height: auto !important;
	width: 100% !important;
	max-height: none !important;
}

/* Final override: Products grid on tablet/SP */
@media (max-width: 1024px) {
	.bl_products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(0.65rem, 1.8vw, 1rem);
	}

	.bl_products__item,
	.bl_products__item:nth-child(n),
	.bl_products__item:nth-child(4n - 1),
	.bl_products__item:nth-child(4n) {
		grid-column: auto;
		--products-item-height: auto;
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.bl_products__item {
		padding: clamp(1rem, 2.6vw, 1.5rem) clamp(0.55rem, 1.6vw, 0.9rem);
		gap: clamp(0.2rem, 0.7vw, 0.4rem);
	}

	.bl_products__item-media {
		min-height: 0;
		height: auto;
		margin: clamp(0.08rem, 0.45vw, 0.24rem) 0;
	}
}
