/*
Theme Name: FUKUKURA Theme
Theme URI:
Author: Tamaru House
Author URI:
Description: 「FUKUKURA」(田丸ハウス リフォーム・リノベーション部門)コーポレートサイト用オリジナルテーマ
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: fukukura-theme
*/

/* 見出し用(明朝系・レタースペース広め)。 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap");

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
	/* Color */
	--color-primary: #464646;
	--color-accent: #b0aa9e;
	--color-accent-hover: #9c9689;
	--color-text: #464646;
	--color-bg: #ffffff;
	--color-bg-alt: #ebeae6;
	--color-border: #e3e1db;

	/* Font */
	--font-family-base: "Noto Sans JP", sans-serif;
	--font-family-heading: "Noto Serif JP", serif;
	--font-weight-heading: 500;
	--font-weight-body: 400;

	/* Layout width */
	--container-wide: 1400px;
	--container: 1190px;

	/* Breakpoint(メディアクエリでは下記の値を直接指定する) */
	--breakpoint-sm: 768px;

	/* Spacing scale */
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 40px;
	--space-xl: 64px;
	--space-2xl: 96px;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-body);
	color: var(--color-text);
	background-color: var(--color-bg);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

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

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

ul {
	list-style: none;
}

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

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.container-wide {
	width: 100%;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

/* 投稿単体ページ(ブログ・施工事例・イベント・物件)のPC幅を900pxに絞るクラス。 */
@media (min-width: 769px) {
	.container.single-narrow {
		max-width: 900px;
	}
}

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

.section-heading--left {
	text-align: left;
}

.section-heading__en {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 40px;
	letter-spacing: 0.2em;
	color: var(--color-text);
}

.section-heading__ja {
	margin-top: 2px;
	font-family: var(--font-family-heading);
	font-size: 13px;
	letter-spacing: 0.3em;
	color: var(--color-text);
}

.section-heading__en-break {
	display: none;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 296px;
	height: 64px;
	background-color: var(--color-accent);
	color: #ffffff;
	font-size: 15px;
	letter-spacing: 0.3em;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.btn-more:hover {
	background-color: var(--color-accent-hover);
}

@media (max-width: 768px) {
	.section-heading__en {
		font-size: 28px;
	}

	.section-heading__en-break {
		display: block;
	}

	.section-renovated__inner .section-heading__en {
		font-size: 22px;
		letter-spacing: 0.1em;
	}
}

/* ==========================================================================
   Renovated
   ========================================================================== */

.section-renovated {
	background-color: var(--color-bg-alt);
	padding-bottom: 80px;
}

.section-renovated__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--space-md) 0;
}

.section-renovated__inner.container {
	padding-bottom: 100px;
}

.renovated-grid {
	margin-top: var(--space-xl);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 51px;
}

.renovated-grid .renovated-card {
	min-width: 0;
}

.renovated-card {
	display: block;
	flex: 0 0 auto;
}

.renovated-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #c9c9c9;
	background-size: cover;
	background-position: center;
}

.renovated-card__body {
	background-color: var(--color-bg);
	padding: 18px 16px 16px;
	text-align: center;
}

.renovated-card__name {
	font-size: 15px;
	color: var(--color-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.renovated-card__meta {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.renovated-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	background-color: #c9c9c9;
	font-size: 13px;
	white-space: nowrap;
	color: var(--color-text);
}

.renovated-card__price {
	font-size: 28px;
	font-weight: 700;
	color: #464646;
}

.renovated-card__price small {
	font-size: 11px;
	font-weight: 400;
	margin-left: 2px;
	white-space: nowrap;
}

.renovated-card__price-unit {
	font-size: 16px;
	font-weight: 400;
	margin-left: 2px;
}

.section-renovated__more {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.section-renovated__inner {
		padding: var(--space-lg) var(--space-md) 0;
	}

	.section-renovated__inner.container {
		padding-bottom: var(--space-xl);
	}

	.renovated-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	.renovated-card__name {
		font-size: 15px;
	}

	.renovated-card__meta {
		margin-top: 16px;
		gap: 16px;
	}

	.renovated-card__price {
		font-size: 22px;
		line-height: 1;
	}

	.section-renovated__more {
		margin-top: 64px;
	}
}

/* Renovated: slider (TOPページ) */

.renovated-slider {
	position: relative;
	margin-top: 80px;
	overflow: hidden;
}

.renovated-slider__viewport {
	overflow: hidden;
	padding: 0 var(--space-md);
}

.renovated-slider__track {
	display: flex;
	gap: 24px;
	will-change: transform;
}

.renovated-slider__track.is-animating {
	transition: transform 0.6s ease;
}

.renovated-slider .renovated-card {
	width: 370px;
	flex-shrink: 0;
}

.renovated-slider .renovated-card__body {
	background-color: transparent;
	text-align: left;
	padding: 20px 4px 0;
}

.renovated-slider .renovated-card__row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.renovated-slider .renovated-card__badge {
	flex-shrink: 0;
	background-color: #464646;
	color: #ffffff;
	border-radius: 4px;
	padding: 6px 12px;
}

.renovated-slider .renovated-card__name {
	font-size: 16px;
}

.renovated-slider .renovated-card__price {
	margin-top: 10px;
	font-size: 22px;
}

.renovated-slider__arrow {
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background-color: var(--color-bg);
	color: var(--color-text);
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.renovated-slider__arrow--prev {
	left: var(--space-sm);
}

.renovated-slider__arrow--next {
	right: var(--space-sm);
}

@media (max-width: 768px) {
	.renovated-slider {
		margin-top: 40px;
	}

	.renovated-slider .renovated-card {
		width: 260px;
	}

	.renovated-slider__arrow {
		display: none;
	}
}

/* ==========================================================================
   Origin (FUKUKURAの原点)
   ========================================================================== */

.section-origin {
	background-color: var(--color-bg);
}

.section-origin__row {
	display: flex;
	align-items: flex-start;
}

.section-origin__photo {
	position: relative;
	flex: 0 0 620px;
	width: 620px;
	height: 754px;
}

.section-origin__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-origin__content {
	flex: 1;
	display: flex;
	align-items: flex-start;
	padding: 60px 105px 60px 60px;
}

.section-origin__inner {
	width: 100%;
	max-width: 600px;
}

.section-origin__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 44px;
	color: var(--color-text);
}

.section-origin__body {
	margin-top: 30px;
	font-size: 15px;
	line-height: 2.7;
	letter-spacing: 0.05em;
	color: var(--color-text);
	word-break: keep-all;
	overflow-wrap: break-word;
}

.section-origin__body + .section-origin__body {
	margin-top: 40px;
}

@media (max-width: 768px) {
	.section-origin__row {
		flex-direction: column;
	}

	.section-origin__photo {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.section-origin__content {
		width: 100%;
		padding: var(--space-xl) var(--space-md);
	}

	.section-origin__inner {
		max-width: none;
	}

	.section-origin__heading {
		font-size: 28px;
	}

	.section-origin__body {
		margin-top: var(--space-md);
	}

	.section-origin__body + .section-origin__body {
		margin-top: var(--space-lg);
	}
}

/* ==========================================================================
   Works (施工事例)
   ========================================================================== */

.section-works {
	background-color: var(--color-bg-alt);
}

.section-works__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--space-md) 100px;
}

.works-grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 51px 51px;
	row-gap: 66px;
}

.work-card__image {
	width: 100%;
	aspect-ratio: 2 / 1;
	background-color: #ffffff;
	background-size: cover;
	background-position: center;
}

.work-card__title {
	margin-top: 19px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-text);
}

.section-works__more {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.section-works__inner {
		padding: var(--space-xl) var(--space-md);
	}

	.works-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
		row-gap: var(--space-lg);
	}

	.work-card__title {
		font-size: 14px;
	}
}

/* ==========================================================================
   Shoeroom
   ========================================================================== */

.section-shoeroom {
	background-color: var(--color-bg);
}

.section-shoeroom__row {
	display: flex;
	align-items: flex-start;
	padding-top: 84px;
}

.section-shoeroom__content {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: flex-start;
	padding: 0 40px 100px 105px;
}

.section-shoeroom__inner {
	width: 100%;
	max-width: 520px;
}

.section-shoeroom__body {
	margin-top: 24px;
	font-size: 15px;
	line-height: 2.7;
	letter-spacing: 0.05em;
	color: var(--color-text);
	word-break: keep-all;
	overflow-wrap: break-word;
}

.section-shoeroom__more {
	margin-top: 64px;
}

.section-shoeroom__photo {
	position: relative;
	flex: 0 0 700px;
	width: 700px;
	height: 466px;
	margin-top: 16px;
}

.section-shoeroom__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.section-shoeroom__row {
		flex-direction: column-reverse;
		padding-top: 0;
	}

	.section-shoeroom__photo {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		aspect-ratio: 3 / 2;
		margin-top: 0;
	}

	.section-shoeroom__content {
		width: 100%;
		padding: var(--space-xl) var(--space-md);
	}

	.section-shoeroom__more {
		display: flex;
		justify-content: center;
	}

	.section-shoeroom__inner {
		max-width: none;
	}
}

/* ==========================================================================
   Event
   ========================================================================== */

.section-event {
	background-color: var(--color-bg-alt);
}

.section-event__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--space-md) 100px;
}

.event-grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 51px;
}

.event-card__image {
	width: 100%;
	aspect-ratio: 2 / 1;
	background-color: #ffffff;
	background-size: cover;
	background-position: center;
}

.event-card__title {
	margin-top: 19px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-text);
}

.section-event__more {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.section-event__inner {
		padding: var(--space-xl) var(--space-md);
	}

	.event-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
		row-gap: var(--space-lg);
	}

	.event-card__title {
		font-size: 14px;
	}
}

/* ==========================================================================
   Instagram
   ========================================================================== */

.section-instagram {
	background-color: var(--color-bg);
	padding-bottom: 64px;
}

.section-instagram__heading-wrap {
	padding: 80px var(--space-md) 64px;
}

.instagram-slider__viewport {
	overflow: hidden;
}

.instagram-slider__track {
	display: flex;
}

.instagram-slider__track.is-animating {
	transition: transform 0.6s ease;
}

.instagram-card {
	display: block;
	flex: 0 0 20%;
}

.instagram-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #c9c9c9;
	background-size: cover;
	background-position: center;
}

@media (max-width: 768px) {
	.section-instagram__heading-wrap {
		padding: var(--space-xl) var(--space-md) var(--space-lg);
	}

	.instagram-card {
		flex: 0 0 33.3333%;
	}
}

/* ==========================================================================
   Blog
   ========================================================================== */

.section-blog {
	background-color: var(--color-bg-alt);
}

.section-blog__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--space-md) 100px;
}

.blog-grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 51px;
}

.blog-card__image {
	width: 100%;
	aspect-ratio: 2 / 1;
	background-color: #c9c9c9;
	background-size: cover;
	background-position: center;
}

.blog-card__title {
	margin-top: 19px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-text);
}

.section-blog__more {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.section-blog__inner {
		padding: var(--space-xl) var(--space-md);
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
		row-gap: var(--space-lg);
	}

	.blog-card__title {
		font-size: 14px;
	}
}

/* ==========================================================================
   Company + MAP
   ========================================================================== */

.section-company {
	background-color: var(--color-bg);
}

.section-company__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 100px var(--space-md);
	display: flex;
	align-items: flex-start;
	gap: 71px;
}

.section-company__map {
	flex: 0 0 499px;
	width: 499px;
	aspect-ratio: 499 / 369;
	position: relative;
}

.section-company__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.section-company__info {
	flex: 1;
	min-width: 0;
}

.company-table__row {
	display: flex;
	gap: 24px;
	font-size: 15px;
	line-height: 2.7;
	letter-spacing: 0.05em;
	color: var(--color-text);
}

.company-table__row dt {
	flex: 0 0 auto;
	width: 175px;
	font-weight: 400;
}

.company-table__row dd {
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {
	.section-company__inner {
		flex-direction: column;
		padding: var(--space-xl) var(--space-md);
		gap: var(--space-lg);
	}

	.section-company__map {
		width: 100%;
	}

	.company-table__row {
		flex-direction: column;
		gap: 4px;
		line-height: 1.8;
		padding: var(--space-sm) 0;
	}

	.company-table__row dt {
		width: auto;
		font-weight: 700;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
}

.hero__photo-wrap {
	width: 100%;
	height: calc(100vh - 88px);
	height: calc(100dvh - 88px);
	overflow: hidden;
}

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

.hero__brand {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 88px);
	height: calc(100dvh - 88px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 44px;
	letter-spacing: 0.15em;
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	pointer-events: none;
	z-index: 2;
}

.hero__photo-wrap.hero-slider {
	position: relative;
}

.hero-slider__track {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
	transition: transform 1s ease;
}

.hero-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.hero-slider__slide,
.hero-slider__link,
.hero-slider picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__photo-wrap.hero-slider .hero__photo.hero-slider__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-slider__thumbs {
	margin-top: var(--space-sm);
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 0 var(--space-md);
}

.hero-slider__thumb {
	width: 72px;
	height: 48px;
	padding: 0;
	border: none;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.45;
	filter: brightness(0.6);
	transition: opacity 0.25s ease, filter 0.25s ease;
}

.hero-slider__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-slider__thumb:hover {
	opacity: 0.75;
	filter: brightness(0.85);
}

.hero-slider__thumb.is-active {
	opacity: 1;
	filter: brightness(1);
}

.hero-slider__thumb:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

@media (max-width: 768px) {
	.hero-slider__thumb {
		width: 56px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-slider__track {
		transition: none !important;
	}
}

.hero-intro {
	max-width: var(--container);
	margin: 0 auto;
	padding: 90px var(--space-md) 100px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-xl);
}

.hero-intro__text {
	flex: 0 1 480px;
}

.hero-intro__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 44px;
	line-height: 1.5;
	color: var(--color-text);
}

.hero-intro__body {
	margin-top: 1px;
	font-size: 15px;
	line-height: 2.7;
	letter-spacing: 0.05em;
	color: #555555;
	white-space: pre-line;
}

.hero-intro__collage {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: stretch;
	gap: 16px;
	margin-right: calc((var(--space-md) + (100vw - var(--container)) / 2) * -1);
}

.hero-intro__collage-image {
	height: 332px;
	object-fit: cover;
}

.hero-intro__collage-image--1 {
	flex: 1 1 460px;
}

.hero-intro__collage-image--2 {
	flex: 1 1 200px;
}

@media (max-width: 1190px) {
	.hero-intro__collage {
		margin-right: 0;
	}
}

@media (max-width: 768px) {
	.hero__photo-wrap {
		height: calc(100vh - 64px);
		height: calc(100dvh - 64px);
	}

	.hero__brand {
		height: calc(100vh - 64px);
		height: calc(100dvh - 64px);
		font-size: 28px;
	}

	.hero-intro {
		flex-direction: column;
		padding: var(--space-lg) var(--space-md) 64px;
		gap: var(--space-lg);
	}

	.hero-intro__text {
		flex: 0 1 auto;
		width: 100%;
	}

	.hero-intro__heading {
		font-size: 28px;
		line-height: 1.6;
		text-align: center;
	}

	.hero-intro__body {
		margin-top: -8px;
		text-align: center;
	}

	.hero-intro__collage {
		width: 100%;
	}

	.hero-intro__collage-image {
		height: 200px;
	}
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: box-shadow 0.2s ease;
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: var(--color-bg);
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.site-header.is-scrolled::before {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-md);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 88px;
}

.site-branding__link {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
}

.site-branding__logo {
	height: 40px;
	width: auto;
}

.site-navigation {
	display: flex;
	margin-left: auto;
}

.primary-menu {
	display: flex;
	gap: var(--space-lg);
}

.primary-menu .menu-item a {
	font-size: 14px;
	letter-spacing: 0.05em;
	color: var(--color-text);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-text);
}

.mobile-nav,
.mobile-nav-overlay {
	display: none;
}

@media (max-width: 768px) {
	.site-header__inner {
		height: 64px;
	}

	.site-navigation {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-nav-overlay {
		position: fixed;
		inset: 0;
		background-color: rgba(0, 0, 0, 0.4);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease;
		z-index: 1100;
	}

	.mobile-nav-overlay.is-open {
		opacity: 1;
		visibility: visible;
	}

	.mobile-nav {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 80%;
		max-width: 320px;
		height: 100%;
		background-color: var(--color-bg);
		padding: var(--space-lg) var(--space-md);
		transform: translateX(100%);
		transition: transform 0.25s ease;
		z-index: 1200;
	}

	.mobile-nav.is-open {
		transform: translateX(0);
	}

	.mobile-nav__header {
		display: flex;
		justify-content: flex-end;
	}

	.mobile-nav__close {
		background: none;
		border: none;
		font-size: 28px;
		line-height: 1;
		cursor: pointer;
	}

	.mobile-nav__menu {
		margin-top: var(--space-lg);
	}

	.mobile-menu .menu-item {
		border-bottom: 1px solid var(--color-border);
	}

	.mobile-menu .menu-item a {
		display: block;
		padding: var(--space-sm) 0;
		font-size: 15px;
	}

	.mobile-nav__tel {
		margin-top: var(--space-lg);
		font-size: 16px;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: var(--color-bg-alt);
}

.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 100px var(--space-md);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xl);
	justify-content: space-between;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.site-footer__logo-link {
	display: flex;
	align-items: center;
}

.site-footer__logo {
	height: 180px;
	width: auto;
}

.site-footer__tagline {
	margin-top: 22px;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.site-footer__info {
	font-style: normal;
	font-family: var(--font-family-heading);
	font-size: 15px;
	letter-spacing: 0.05em;
	line-height: 1.4;
}

.site-footer__company {
	font-weight: 500;
}

.site-footer__postal {
	margin-top: 21px;
}

.site-footer__address {
	margin-top: 21px;
}

.site-footer__tel {
	margin-top: 22px;
	font-size: 43px;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.site-footer__note {
	margin-top: 17px;
	font-size: 15px;
}

.site-footer__menu {
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-family: var(--font-family-heading);
	font-size: 15px;
	letter-spacing: 0.05em;
}

.site-footer__menu .menu-item a {
	position: relative;
	padding-left: 18px;
}

.site-footer__menu .menu-item a::before {
	content: "\25CF";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 8px;
	color: var(--color-text);
}

@media (max-width: 768px) {
	.site-footer__inner {
		flex-direction: column;
		gap: var(--space-lg);
		padding: var(--space-xl) var(--space-md);
	}
}

/* ==========================================================================
   Property single (不動産 詳細ページ)
   ========================================================================== */

.property-slideshow {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #000;
}

.property-slideshow__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.property-slideshow__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.6s ease;
}

.property-slideshow__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.property-slideshow__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-slideshow__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--color-text);
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.property-slideshow__arrow--prev {
	left: var(--space-md);
}

.property-slideshow__arrow--next {
	right: var(--space-md);
}

.property-slideshow__thumbs {
	display: flex;
	gap: 8px;
	padding: 8px var(--space-md);
	overflow-x: auto;
	background-color: #000;
}

.property-slideshow__thumb {
	flex: 0 0 90px;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.45;
	filter: brightness(0.6);
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.property-slideshow__thumb.is-active {
	opacity: 1;
	filter: brightness(1);
}

.property-slideshow__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-article {
	padding: 64px 24px;
}

.property-row {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.property-row__photos {
	flex: 0 0 40%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.property-row__photos img {
	width: 100%;
}

.property-row__text {
	flex: 1;
	min-width: 0;
}

.property-content {
	margin-top: 32px;
	line-height: 2.2;
	letter-spacing: 0.03em;
}

.property-content p {
	margin-bottom: 24px;
}

.property-floorplan {
	margin-top: 48px;
	text-align: center;
}

.property-floorplan img {
	max-width: 100%;
	margin: 0 auto;
}

.property-table {
	width: 100%;
	margin-top: 48px;
	border-collapse: collapse;
	font-size: 14px;
}

.property-table th,
.property-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	font-weight: 400;
}

.property-table th {
	width: 160px;
	color: #666666;
	background-color: #fafaf8;
}

.property-top-link {
	margin-top: 64px;
	display: flex;
	justify-content: center;
}

.property-reserve-link {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.property-article {
		padding: var(--space-xl) var(--space-md);
	}

	.property-row {
		flex-direction: column;
	}

	.property-row__photos {
		display: none;
	}

	.property-table th {
		width: 110px;
		font-size: 13px;
	}
}

/* ==========================================================================
   Reservation
   ========================================================================== */

.reservation-page,
.reservation-thanks {
	padding: 80px var(--space-md) var(--space-2xl);
	max-width: 720px;
}

.fukukura-calendar {
	margin-top: 12px;
	padding: 24px;
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.fukukura-calendar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fukukura-calendar__nav {
	border: none;
	background: none;
	cursor: pointer;
	font-size: 14px;
	color: var(--color-text);
	padding: 8px;
}

.fukukura-calendar__nav:disabled {
	color: #cccccc;
	cursor: not-allowed;
}

.fukukura-calendar__month-year {
	display: flex;
	align-items: baseline;
	gap: 4px;
	font-size: 24px;
	font-weight: 700;
}

.fukukura-calendar__month-select {
	border: none;
	background: none;
	font-size: 24px;
	font-weight: 700;
	font-family: inherit;
	color: var(--color-text);
	cursor: pointer;
	appearance: auto;
}

.fukukura-calendar__weekdays {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text);
}

.fukukura-calendar__weekdays .is-sat {
	color: #3b6ea5;
}

.fukukura-calendar__weekdays .is-sun {
	color: #c14b4b;
}

.fukukura-calendar__grid {
	margin-top: 8px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.fukukura-calendar__day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	color: var(--color-text);
	cursor: pointer;
}

.fukukura-calendar__day.is-sat {
	color: #3b6ea5;
}

.fukukura-calendar__day.is-sun {
	color: #c14b4b;
}

.fukukura-calendar__day:not(.is-disabled):not(.fukukura-calendar__day--other-month):hover {
	background-color: var(--color-bg-alt);
}

.fukukura-calendar__day--other-month {
	color: #cccccc;
	cursor: default;
}

.fukukura-calendar__day.is-disabled {
	background-color: #f2f2f2;
	color: #b9b9b9;
	text-decoration: line-through;
	cursor: not-allowed;
}

.fukukura-calendar__day.is-selected {
	background-color: var(--color-primary);
	color: #ffffff;
}

.fukukura-calendar__result {
	margin-top: var(--space-md);
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.fukukura-calendar__result label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.fukukura-calendar__result input {
	flex: 1;
	height: 52px;
	padding: 0 16px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-size: 15px;
	font-family: inherit;
	color: var(--color-text);
	background-color: #fafaf8;
}

@media (max-width: 768px) {
	.fukukura-calendar {
		padding: 16px;
	}

	.fukukura-calendar__result {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.fukukura-calendar__result input {
		width: 100%;
	}
}

.reservation-form__error {
	margin-top: var(--space-md);
	padding: 16px 20px;
	background-color: #fbe9e9;
	color: #a33a3a;
	border-radius: 4px;
	font-size: 14px;
}

.reservation-form__target {
	margin-top: var(--space-lg);
	padding: 20px 24px;
	background-color: var(--color-bg-alt);
	border-radius: 4px;
	font-size: 15px;
}

.reservation-form__target--missing {
	color: #a33a3a;
	background-color: #fbe9e9;
}

.reservation-form {
	margin-top: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.reservation-form__honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.reservation-form__row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.reservation-form__row label {
	font-size: 14px;
	letter-spacing: 0.05em;
}

.reservation-form__required {
	margin-left: 8px;
	font-size: 11px;
	color: #ffffff;
	background-color: #b0554f;
	padding: 2px 8px;
	border-radius: 2px;
	letter-spacing: 0;
}

.reservation-form__row input,
.reservation-form__row select,
.reservation-form__row textarea {
	padding: 0 16px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-size: 15px;
	font-family: inherit;
	color: var(--color-text);
	background-color: #ffffff;
}

.reservation-form__row input,
.reservation-form__row select {
	height: 52px;
}

.reservation-form__row textarea {
	padding-top: 14px;
	padding-bottom: 14px;
	line-height: 1.7;
	resize: vertical;
}

.reservation-form__row input:focus,
.reservation-form__row select:focus,
.reservation-form__row textarea:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: 1px;
}

.reservation-form__date-error {
	font-size: 13px;
	color: #a33a3a;
}

.reservation-form__notice {
	margin-top: var(--space-sm);
	font-size: 13px;
	line-height: 1.8;
	color: #777777;
}

.reservation-form__submit {
	margin-top: var(--space-md);
	border: none;
	cursor: pointer;
	width: 100%;
}

.reservation-thanks__text {
	margin-top: var(--space-lg);
	font-size: 16px;
	line-height: 2;
	text-align: center;
}

.reservation-thanks__link {
	margin-top: var(--space-xl);
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.reservation-page,
	.reservation-thanks {
		padding: var(--space-xl) var(--space-md);
	}
}

/*
 * 旧サイトから移行した投稿本文には、画面幅いっぱいに背景を広げるための
 * width:100vw; left:50%; margin-left:-50vw; という手法が使われていることがある。
 * position:relative がないと left が効かず左にずれて表示が崩れるため補う。
 */
[style*="width: 100vw"] {
	position: relative;
}

/* Instagramセクション: Smash Balloonのアカウント名・アイコン・自己紹介文のヘッダー部分を非表示にする。 */
.section-instagram__feed .sb_instagram_header {
	display: none !important;
}

/* ==========================================================================
   Floating actions (TOPページ右下の固定ボタン)
   ========================================================================== */

.floating-actions {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
}

.floating-actions__totop {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--color-text);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	font-size: 14px;
	z-index: 1;
}

.floating-actions__row {
	display: flex;
}

.floating-actions__btn {
	width: 150px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
	line-height: 1.5;
	font-weight: 700;
	color: #ffffff;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.floating-actions__btn--contact {
	background-color: var(--color-accent);
}

.floating-actions__btn--contact:hover {
	background-color: var(--color-accent-hover);
}

.floating-actions__btn--tel {
	background-color: #464646;
}

.floating-actions__btn--tel:hover {
	background-color: #2e2e2e;
}

@media (max-width: 768px) {
	.floating-actions {
		left: 0;
		width: 100%;
	}

	.floating-actions__row {
		width: 100%;
	}

	.floating-actions__btn {
		flex: 1 1 0;
		width: auto;
		height: 56px;
		font-size: 12px;
	}
}

/* ==========================================================================
   FUKUKURAとは: 冒頭のスクロール連動セクション
   ========================================================================== */

.toha-hero {
	position: relative;
	height: calc(var(--toha-hero-steps) * 100vh * 1.8);
	height: calc(var(--toha-hero-steps) * 100dvh * 1.8);
}

.toha-hero__sticky {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

.toha-hero__slide {
	position: absolute;
	inset: 0;
	transform: translateY(100%);
}

.toha-hero__slide:first-child {
	transform: translateY(0);
}

.toha-hero__photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.toha-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.toha-hero__content {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	pointer-events: none;
}

.toha-hero__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 32px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	color: #ffffff;
	white-space: pre-line;
}

.toha-hero__scroll-hint {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #ffffff;
}

.toha-hero__scroll-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	font-size: 12px;
	animation: toha-hero-bounce 1.8s ease-in-out infinite;
}

.toha-hero__scroll-label {
	font-size: 11px;
	letter-spacing: 0.2em;
}

@keyframes toha-hero-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}

@media (max-width: 768px) {
	.toha-hero__heading {
		font-size: 24px;
	}
}

.toha-origin {
	background-color: var(--color-bg-alt);
	padding: var(--space-2xl) 0;
}

.toha-origin__inner {
	max-width: 760px;
	text-align: center;
}

.toha-origin__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 28px;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.toha-origin__body {
	margin-top: var(--space-lg);
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.03em;
	color: var(--color-text);
	text-align: left;
}

.toha-origin__body + .toha-origin__body {
	margin-top: var(--space-md);
}

@media (max-width: 768px) {
	.toha-origin {
		padding: var(--space-xl) 0;
	}

	.toha-origin__heading {
		font-size: 22px;
	}

	.toha-origin__body {
		text-align: left;
	}
}

.toha-service {
	background-color: var(--color-bg-alt);
}

.toha-service__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 1400 / 400;
	overflow: hidden;
}

.toha-service__photo img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 160%;
	object-fit: cover;
	display: block;
	transform: translate(0, -50%);
	will-change: transform;
}

.toha-service__content {
	max-width: 760px;
	padding: var(--space-2xl) var(--space-md);
	text-align: center;
}

.toha-service__label {
	font-size: 13px;
	letter-spacing: 0.2em;
	color: #999999;
}

.toha-service__heading {
	margin-top: 4px;
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 32px;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.toha-service__body {
	margin-top: var(--space-lg);
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.03em;
	color: var(--color-text);
	text-align: left;
}

.toha-service__body + .toha-service__body {
	margin-top: var(--space-md);
}

@media (max-width: 768px) {
	.toha-service__photo {
		aspect-ratio: 390 / 300;
	}

	.toha-service__content {
		padding: var(--space-xl) var(--space-md);
	}

	.toha-service__heading {
		font-size: 24px;
	}

	.toha-service__body {
		text-align: left;
	}
}

.toha-reform {
	background-color: var(--color-bg-alt);
}

.toha-reform__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 1400 / 400;
	overflow: hidden;
}

.toha-reform__photo img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 160%;
	object-fit: cover;
	display: block;
	transform: translate(0, -50%);
	will-change: transform;
}

.toha-reform__content {
	max-width: 760px;
	padding: var(--space-2xl) var(--space-md);
	text-align: center;
}

.toha-reform__label {
	font-size: 13px;
	letter-spacing: 0.2em;
	color: #999999;
}

.toha-reform__heading {
	margin-top: 4px;
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 32px;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.toha-reform__body {
	margin-top: var(--space-lg);
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.03em;
	color: var(--color-text);
	text-align: left;
}

.toha-reform__body + .toha-reform__body {
	margin-top: var(--space-md);
}

@media (max-width: 768px) {
	.toha-reform__photo {
		aspect-ratio: 390 / 300;
	}

	.toha-reform__content {
		padding: var(--space-xl) var(--space-md);
	}

	.toha-reform__heading {
		font-size: 24px;
	}

	.toha-reform__body {
		text-align: left;
	}
}

.toha-cta {
	background-color: var(--color-bg-alt);
}

.toha-cta__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 1400 / 400;
	overflow: hidden;
}

.toha-cta__photo img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 160%;
	object-fit: cover;
	display: block;
	transform: translate(0, -50%);
	will-change: transform;
}

.toha-cta__row {
	display: flex;
	align-items: center;
}

.toha-cta__text {
	flex: 0 1 38%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--space-2xl) var(--space-md);
}

.toha-cta__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--color-text);
	white-space: pre-line;
}

.toha-cta__body {
	margin-top: var(--space-lg);
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.03em;
	color: var(--color-text);
}

.toha-cta__banner {
	flex: 0 1 62%;
	aspect-ratio: 669 / 330;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #464646;
	text-decoration: none;
}

.toha-cta__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.toha-cta__banner-label {
	font-size: 13px;
	letter-spacing: 0.2em;
	color: #ffffff;
}

@media (max-width: 768px) {
	.toha-cta__photo {
		aspect-ratio: 390 / 300;
	}

	.toha-cta__row {
		flex-direction: column;
	}

	.toha-cta__text {
		padding: var(--space-xl) var(--space-md);
		text-align: left;
	}

	.toha-cta__heading {
		font-size: 24px;
	}

	.toha-cta__banner {
		flex-basis: auto;
		width: 100%;
	}
}

/* ==========================================================================
   ショールーム: ヒーロー動画セクション
   ========================================================================== */

.shoeroom-hero-wrap {
	position: relative;
	z-index: 3;
	height: calc(100vh - 88px + 600px);
	height: calc(100dvh - 88px + 600px);
}

.shoeroom-hero-wrap.is-fully-covered {
	z-index: 0;
}

.shoeroom-hero-sticky {
	position: sticky;
	top: 88px;
	width: 100%;
	height: calc(100vh - 88px);
	height: calc(100dvh - 88px);
	overflow: hidden;
}

.shoeroom-hero-slide {
	position: absolute;
	inset: 0;
}

.shoeroom-hero-slide--video {
	z-index: 1;
}

.shoeroom-hero-slide--cover {
	z-index: 2;
	transform: translateY(100%);
	background-color: var(--color-bg-alt);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: var(--space-2xl);
	text-align: center;
	will-change: transform;
}

@media (max-width: 768px) {
	.shoeroom-hero-wrap {
		height: calc(100vh - 64px + 400px);
		height: calc(100dvh - 64px + 400px);
	}

	.shoeroom-hero-sticky {
		top: 64px;
		height: calc(100vh - 64px);
		height: calc(100dvh - 64px);
	}
}

.shoeroom-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shoeroom-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
}

.shoeroom-hero__content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ffffff;
}

.shoeroom-hero__en {
	font-family: var(--font-family-heading);
	font-size: 15px;
	letter-spacing: 0.3em;
}

.shoeroom-hero__ja {
	margin-top: 8px;
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 32px;
	letter-spacing: 0.15em;
}

.shoeroom-hero__scroll-hint {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.shoeroom-hero__scroll-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	font-size: 12px;
	animation: toha-hero-bounce 1.8s ease-in-out infinite;
}

.shoeroom-hero__scroll-label {
	font-size: 11px;
	letter-spacing: 0.2em;
}

@media (max-width: 768px) {
	.shoeroom-hero__ja {
		font-size: 24px;
	}
}

/* ==========================================================================
   ショールーム: イントロセクション(動画に覆いかぶさる背景+本文)
   ========================================================================== */

.shoeroom-intro-body {
	position: relative;
	margin-top: calc(-100vh + 422px);
	margin-top: calc(-100dvh + 422px);
	background-color: var(--color-bg-alt);
	padding: 48px 0 var(--space-2xl);
}

@media (max-width: 768px) {
	.shoeroom-intro-body {
		margin-top: calc(-100vh + 244px);
		margin-top: calc(-100dvh + 244px);
		padding-top: 56px;
	}
}

.shoeroom-intro__inner {
	max-width: 760px;
	text-align: center;
}

.shoeroom-intro__label {
	font-size: 20px;
	letter-spacing: 0.2em;
	color: #999999;
}

.shoeroom-intro__heading {
	margin-top: 44px;
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 44px;
	line-height: 1.8;
	letter-spacing: 0.1em;
	color: var(--color-text);
	white-space: pre-line;
}

.shoeroom-intro__body {
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.03em;
	color: var(--color-text);
}

.shoeroom-intro__body + .shoeroom-intro__body {
	margin-top: 15px;
}

@media (max-width: 768px) {
	.shoeroom-intro-body {
		padding: var(--space-xl) 0;
	}

	.shoeroom-intro__heading {
		font-size: 22px;
	}

	.shoeroom-intro__body {
		text-align: left;
	}
}

/* ==========================================================================
   ショールーム: 空間ギャラリー(KITCHEN/DINING/LIVING SPACE)
   ========================================================================== */

.shoeroom-gallery-wrap {
	position: relative;
	aspect-ratio: 1400 / 2367;
}

.shoeroom-gallery-sticky {
	position: sticky;
	top: 88px;
	width: 100%;
	aspect-ratio: 1400 / 789;
	overflow: hidden;
}

.shoeroom-gallery-slide {
	position: absolute;
	inset: 0;
	transform: translateY(100%);
}

.shoeroom-gallery-slide:first-child {
	transform: translateY(0);
}

.shoeroom-gallery-slide picture,
.shoeroom-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shoeroom-gallery-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
}

.shoeroom-gallery-text__box {
	background-color: rgba(255, 255, 255, 0.85);
	padding: 32px 56px;
	text-align: center;
}

.shoeroom-gallery-text__label {
	font-family: var(--font-family-heading);
	font-size: 24px;
	line-height: 1.7;
	letter-spacing: 0.15em;
	color: var(--color-text);
	white-space: pre-line;
}

@media (max-width: 768px) {
	.shoeroom-gallery-wrap {
		aspect-ratio: auto;
		height: calc((100vh - 64px) * 3);
		height: calc((100dvh - 64px) * 3);
	}

	.shoeroom-gallery-sticky {
		top: 64px;
		aspect-ratio: auto;
		height: calc(100vh - 64px);
		height: calc(100dvh - 64px);
	}

	.shoeroom-gallery-text__box {
		padding: 20px 32px;
	}

	.shoeroom-gallery-text__label {
		font-size: 18px;
	}
}

/* ==========================================================================
   ショールーム: 特徴紹介ブロック(内窓/ウスイータ/Ⅱ型キッチン/インテリア)
   ========================================================================== */

.shoeroom-features {
	background-color: var(--color-bg-alt);
}

.shoeroom-features__heading,
.shoeroom-features__closing {
	padding: var(--space-2xl) 0 var(--space-lg);
	text-align: center;
}

.shoeroom-features__heading-text,
.shoeroom-features__closing-text {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 34px;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.shoeroom-feature {
	position: sticky;
	top: 88px;
	padding-left: 0;
	padding-right: 0;
}

@media (max-width: 768px) {
	.shoeroom-feature {
		top: 64px;
	}
}

.shoeroom-feature__card {
	padding: 64px var(--space-lg);
	text-align: center;
}

.shoeroom-feature__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 44px;
	letter-spacing: 0.15em;
	color: var(--color-text);
}

.shoeroom-feature__row {
	margin-top: 64px;
	display: flex;
	align-items: flex-start;
	gap: var(--space-lg);
	text-align: left;
}

.shoeroom-feature__row--right {
	flex-direction: row-reverse;
}

.shoeroom-feature__photo {
	flex: 0 0 44%;
	aspect-ratio: 530 / 340;
	overflow: hidden;
}

.shoeroom-feature__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shoeroom-feature__content {
	flex: 1 1 auto;
}

.shoeroom-feature__subheading {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text);
}

.shoeroom-feature__body {
	margin-top: 50px;
	font-size: 15px;
	line-height: 3.2;
	letter-spacing: 0.02em;
	color: var(--color-text);
}

@media (max-width: 768px) {
	.shoeroom-features__heading-text,
	.shoeroom-features__closing-text {
		font-size: 24px;
	}

	.shoeroom-feature__heading {
		font-size: 24px;
	}

	.shoeroom-feature__row,
	.shoeroom-feature__row--right {
		flex-direction: column;
	}

	.shoeroom-feature__photo {
		flex-basis: auto;
		width: 100%;
	}

	/* カードの中身が画面より縦長になる分は、固定されている間だけ
	   カード内スクロールで最後まで読めるようにし、読み終わったら
	   次のカードが自然に重なってくるようにする。 */
	.shoeroom-feature {
		max-height: calc(100vh - 64px);
		max-height: calc(100dvh - 64px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* ==========================================================================
   ショールーム: 空間デザイン相談セクション
   ========================================================================== */

.shoeroom-closing-bg {
	background-color: var(--color-bg-alt);
}

.shoeroom-design {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	padding: var(--space-lg) var(--space-md);
}

.shoeroom-design__photo {
	flex: 0 0 44%;
	aspect-ratio: 535 / 385;
	overflow: hidden;
}

.shoeroom-design__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shoeroom-design__content {
	flex: 1 1 auto;
}

.shoeroom-design__overline {
	padding-bottom: var(--space-sm);
	border-bottom: 1px solid var(--color-text);
	font-size: 14px;
	letter-spacing: 0.05em;
	color: var(--color-text);
}

.shoeroom-design__heading {
	margin-top: var(--space-md);
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 38px;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.shoeroom-design__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--color-text);
	color: #ffffff;
	font-size: 14px;
	font-weight: var(--font-weight-body);
	letter-spacing: 0.1em;
	border-radius: 999px;
}

.shoeroom-design__subheading {
	margin-top: var(--space-sm);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text);
}

.shoeroom-design__body {
	margin-top: var(--space-md);
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.02em;
	color: var(--color-text);
}

@media (max-width: 768px) {
	.shoeroom-design {
		flex-direction: column;
		align-items: stretch;
		padding: var(--space-xl) var(--space-md);
	}

	.shoeroom-design__photo {
		flex-basis: auto;
		width: 100%;
	}

	.shoeroom-design__heading {
		font-size: 26px;
	}
}

/* ==========================================================================
   ショールーム: お問い合わせCTA + MAP
   ========================================================================== */

.shoeroom-contact-cta {
	padding: var(--space-lg) 0 var(--space-2xl);
	text-align: center;
}

.shoeroom-contact-cta__heading {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-heading);
	font-size: 34px;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.shoeroom-contact-cta__map {
	margin-top: var(--space-xl);
	max-width: 660px;
	aspect-ratio: 660 / 460;
}

.shoeroom-contact-cta__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.shoeroom-contact-cta__address {
	margin-top: var(--space-lg);
}

.shoeroom-contact-cta__address-label {
	font-size: 14px;
	letter-spacing: 0.2em;
	color: var(--color-text);
}

.shoeroom-contact-cta__address-text {
	margin-top: 4px;
	font-size: 15px;
	letter-spacing: 0.05em;
	color: var(--color-text);
}

.shoeroom-contact-cta__back {
	margin-top: var(--space-xl);
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.shoeroom-contact-cta__heading {
		font-size: 24px;
	}

	.shoeroom-contact-cta__map {
		max-width: 100%;
	}
}

/* ==========================================================================
   TOPページ: セクションのスクロールフェードイン
   ========================================================================== */

.js-fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   一覧ページ共通: ページネーション(ブログ・不動産・施工事例・イベント)
   ========================================================================== */

.pagination {
	margin: 56px 0;
	display: flex;
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 4px;
	color: var(--color-text);
	font-size: 14px;
	text-decoration: none;
}

.pagination a.page-numbers:hover {
	background-color: var(--color-bg-alt);
}

.pagination .page-numbers.current {
	background-color: var(--color-accent);
	color: #fff;
}

.pagination .page-numbers.dots {
	background: none;
}

@media (max-width: 768px) {
	.pagination {
		margin: 40px 0;
	}
}

/* ==========================================================================
   パンくずリスト
   ========================================================================== */

.fukukura-breadcrumb {
	margin-bottom: 24px;
}

.fukukura-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #999;
}

.fukukura-breadcrumb__item {
	display: flex;
	align-items: center;
}

.fukukura-breadcrumb__item a {
	color: #999;
	text-decoration: none;
}

.fukukura-breadcrumb__item a:hover {
	color: var(--color-accent);
}

.fukukura-breadcrumb__sep {
	margin: 0 8px;
}
