:root {
--bg: #f5f0e8;
--white: #fdfbf7;
--dark: #1e1c18;
--mid: #5c5852;
--light: #a8a49c;
--green: #3d7a2e;
--green-l: #5a9e48;
--green-pale: #eaf4e4;
--blue: #2058a0;
--blue-l: #3078b3;
--blue-pale: #e4edf8;
--orange: #d4702a;
--cream: #f0e8d4;
--teal: #3a8880;
--yellow: #fbec12;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	background: var(--bg);
	color: var(--dark);
	overflow-x: hidden;
	font-weight: 300;
}
/* ===== LOADER ===== */
.loader {
	position: fixed;
	inset: 0;
	background: var(--bg);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	transition: opacity 0.7s ease, visibility 0.7s;
}
.loader.hide {
	opacity: 0;
	visibility: hidden;
}
.loader-logo {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 20px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: 4px;
}
.loader-bar-wrap {
	width: 140px;
	height: 2px;
	background: var(--cream);
	border-radius: 2px;
	overflow: hidden;
}
.loader-bar {
	height: 100%;
	background: linear-gradient(to right, var(--yellow), var(--blue-l), var(--blue-l), var(--blue-l));
	animation: loadBar 1.4s ease forwards;
}
@keyframes loadBar {
from {
width:0
}
to {
width:100%
}
}
.loader-txt {
	font-size: 10px;
	letter-spacing: 4px;
	color: var(--light);
	font-family: 'futura-pt', sans-serif;
}
/* ===== PROGRESS ===== */
.progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(to right, var(--yellow), var(--blue), var(--blue), var(--blue));
	z-index: 999;
	transition: width 0.1s;
	pointer-events: none;
}
/* スマホ用ヒーローフォト3枚（PC非表示） */
.hero-photos-sp {
	display: none;
}
/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 20px 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(245,240,232,0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	letter-spacing: 2px;
}
.nav-logo span {
	color: var(--green);
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 28px;
}
.nav-price {
	font-family: 'futura-pt', sans-serif;
	font-size: 14px;
	color: var(--mid);
	letter-spacing: 1px;
}
.nav-cta {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 1.5px;
	color: var(--blue-l);
	text-decoration: none;
	background: var(--yellow);
	padding: 10px 22px;
	border-radius: 4px;
	transition: opacity 0.2s;
}
.nav-cta:hover {
	opacity: 0.85;
}
/* ===========================
   HERO — COMODO STYLE
=========================== */
.hero {
	min-height: 100svh;
	background: var(--bg);
	padding: 100px 48px 60px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
/* 背景のうっすらテクスチャ */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 20% 30%, rgba(61,122,46,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(32,88,160,0.05) 0%, transparent 50%);
	pointer-events: none;
}
/* 流れる雲 */
.cloud {
	position: absolute;
	pointer-events: none;
	animation: cloudDrift linear infinite;
	opacity: 0.55;
	mix-blend-mode: multiply;
}
.cloud-1 {
	top: 12%;
	left: -140px;
	animation-duration: 50s;
}
.cloud-2 {
	top: 22%;
	left: -200px;
	animation-duration: 65s;
	animation-delay: -25s;
	transform: scale(0.65);
	opacity: 0.35;
}
@keyframes cloudDrift {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(100vw + 260px));
}
}
.cloud-2 {
	animation: cloudDrift2 65s linear -25s infinite;
}
@keyframes cloudDrift2 {
from {
transform: translateX(0) scale(0.65);
}
to {
transform: translateX(calc(100vw + 260px)) scale(0.65);
}
}
/* ===== サイドフォト（左右に浮く） ===== */
.side-photo {
	position: absolute;
	pointer-events: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.hero-photos-row {
	display: none;
}
.side-photo-l {
	left: -20px;
	top: calc(50% - 200px);
	transform: translateY(-50%) rotate(-4deg);
	width: 432px;
	height: 540px;
	animation: photoFloat 8s ease-in-out infinite;
}
.side-photo-r1 {
	right: -10px;
	top: 18%;
	transform: rotate(3deg);
	width: 360px;
	height: 270px;
	animation: photoFloat 9s ease-in-out 1s infinite;
}
.side-photo-r2 {
	right: 30px;
	top: 45%;
	transform: rotate(-2.5deg);
	width: 324px;
	height: 324px;
	animation: photoFloat 7s ease-in-out 3s infinite;
	border-radius: 50%;
	position: absolute;
	z-index: 3;
}
@keyframes photoFloat {
0%, 100% {
transform: translateY(0) rotate(var(--rot, -4deg));
}
50% {
transform: translateY(-12px) rotate(var(--rot, -4deg));
}
}
.photo-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	font-size: 11px;
	letter-spacing: 2px;
	font-family: 'futura-pt', sans-serif;
}
.photo-l {
	background: linear-gradient(155deg, #8aaa78, #6a8858);
	color: rgba(255,255,255,0.5);
}
.photo-r1 {
	background: linear-gradient(155deg, #c0a878, #a08858);
	color: rgba(255,255,255,0.5);
}
.photo-r2 {
	background: linear-gradient(155deg, #80a8c8, #6088a8);
	color: rgba(255,255,255,0.5);
}
.photo-icon {
	font-size: 28px;
	opacity: 0.5;
}
/* ===== 歩く人のイラスト ===== */

/* ===== センターコンテンツ ===== */


.hero-center {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 2500px;
	width: 100%;
}
/* メインの大きな写真 */
.hero-main-photo {
	display: block;
	width: 100vw;
	max-width: 70vw;
	margin: 0 auto -60px;
	aspect-ratio: 1536 / 917;
	background-image: url(../images/hero_main.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
	animation: scaleIn 0.9s ease 1.8s forwards;
	margin-bottom: -60px;
	position: relative;
	z-index: 1;
}
@keyframes scaleIn {
from {
opacity:0;
transform: scale(0.94);
}
to {
opacity:1;
transform: scale(1);
}
}
.hero-main-inner {
	display: none;
}
.hero-main-inner::after {
	display: none;
}
.hero-photo-icon {
	display: none;
}
.hero-photo-txt {
	display: none;
}
/* タグ */
.hero-tags {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
	opacity: 0;
	animation: fadeUp 0.7s ease 2s forwards;
}
.hero-tag {
	font-size: 11px;
	padding: 5px 16px;
	border-radius: 50px;
	letter-spacing: 1px;
	font-family: 'Noto Sans JP', sans-serif;
}
.hero-tag.g {
	background: var(--green-pale);
	color: var(--green);
	border: 1px solid rgba(61,122,46,0.2);
}
.hero-tag.b {
	background: var(--blue-pale);
	color: var(--blue);
	border: 1px solid rgba(32,88,160,0.2);
}
.hero-tag.n {
	background: rgba(0,0,0,0.05);
	color: var(--mid);
	border: 1px solid rgba(0,0,0,0.08);
}
/* キャッチコピー */
.hero-catch {
	/*font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;*/
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-style: normal;
	font-weight: 900;
	font-size: clamp(30px, 4.5vw, 80px);
	text-shadow: 0px 2px 12px rgba(0,0,0,0.4);
	line-height: 1.65;
	/*font-weight: 700;*/
	letter-spacing: 0.06em;
	color: var(--white);
	margin-top: -400px;
	margin-bottom: 12px;
	opacity: 0;
	animation: fadeUp 0.8s ease 2.2s forwards;
	position: relative;
	z-index: 2;
}
.hero-catch em {
	font-style: normal;
	color: var(--yellow);
	position: relative;
}
.hero-catch em::after {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--yellow);
	border-radius: 2px;
	opacity: 0.35;
}
.hero-sub {
	font-size: 12px;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 32px;
	opacity: 0;
	animation: fadeUp 0.7s ease 2.3s forwards;
	text-shadow: 0 1px 6px rgba(0,0,0,0.7);
	position: relative;
	z-index: 5;
}
/* 価格 */
.hero-price-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	background: var(--blue-l);
	border-radius: 0;
	padding: 20px 48px;
	margin-bottom: 32px;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	max-width: 100vw;
	box-sizing: border-box;
	box-shadow: 0 8px 28px rgba(0,0,0,0.15);
	opacity: 0;
	animation: fadeUp 0.8s ease 2.4s forwards;
	border-left: 100px solid #fbec12;
	padding-right: calc(48px + 100px);
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.hero-price-label {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(32px, 4vw, 44px);
	color: #fff;
	margin-right: 16px;
	line-height: 1.2;
}
.hero-price-num {
	font-family: "futura-pt", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(104px, 14vw, 172px);
	color: #fff;
	line-height: 1;
	letter-spacing: -1px;
}
.hero-price-unit {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(36px, 4.4vw, 52px);
	color: #fff;
	margin-left: 6px;
	margin-bottom: 6px;
	align-self: flex-end;
}
/* CTAボタン */
.hero-cta-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	opacity: 0;
	animation: fadeUp 0.7s ease 2.6s forwards;
}
.hero-btn-g {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--blue);
	color: #fff;
	padding: 20px 52px;
	border-radius: 6px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 17px;
	text-decoration: none;
	letter-spacing: 1px;
	transition: background 0.2s, transform 0.2s;
}
.hero-btn-g:hover {
	background: var(--blue-l);
	transform: translateY(-2px);
}
.hero-btn-o {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid rgba(0,0,0,0.15);
	background: #fff;
	color: var(--mid);
	padding: 15px 36px;
	border-radius: 6px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	text-decoration: none;
	letter-spacing: 1px;
	transition: all 0.2s;
}
.hero-btn-o:hover {
	border-color: var(--dark);
	color: var(--dark);
	transform: translateY(-2px);
}
/* 矢印ダウン */
.hero-arrow {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 3px;
	color: var(--light);
	animation: arrowBob 2s ease-in-out infinite;
	z-index: 2;
}
.hero-arrow svg {
	opacity: 0.35;
}
@keyframes arrowBob {
0%, 100% {
transform: translateX(-50%) translateY(0);
}
50% {
transform: translateX(-50%) translateY(6px);
}
}
@keyframes fadeUp {
from {
opacity:0;
transform: translateY(20px);
}
to {
opacity:1;
transform: translateY(0);
}
}
/* ===== SECTIONS (same as v4) ===== */
/* ===== STATS SLIDER ===== */
.stats-slider {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	background: var(--dark);
}
.stats-track {
	display: flex;
	height: 100%;
	transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.stat-slide {
	min-width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
/* 写真背景（グラデーション）*/
.stat-slide:nth-child(1) {
	background: url(../images/stat_01.jpg) center/cover no-repeat;
}
.stat-slide:nth-child(2) {
	background: url(../images/stat_02.jpg) center/cover no-repeat;
}
.stat-slide:nth-child(3) {
	background: url(../images/stat_03.jpg) center/cover no-repeat;
}
.stat-slide:nth-child(4) {
	background: url(../images/stat_04.jpg) center/cover no-repeat;
}
/* オーバーレイ */
.stat-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(20,18,14,0.38);
	z-index: 1;
}
/* 写真ラベル */
.stat-photo-hint {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15vw;
	opacity: 0.08;
	pointer-events: none;
}
.stat-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 40px;
}
/* でかい数字 */
.stat-big-num {
	font-family: 'futura-pt', sans-serif;
	font-weight: 700;
	font-size: clamp(120px, 22vw, 280px);
	color: #fff;
	line-height: 0.85;
	letter-spacing: -6px;
	display: block;
	opacity: 0.92;
	transition: transform 0.5s ease;
}
.stat-slide:hover .stat-big-num {
	transform: scale(1.04);
}
.stat-unit {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(28px, 4vw, 52px);
	color: rgba(255,255,255,0.75);
	margin-left: 8px;
	letter-spacing: 2px;
}
.stat-label {
	font-family: 'futura-pt', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 6px;
	color: rgba(255,255,255,0.45);
	text-transform: uppercase;
	margin-top: 20px;
	display: block;
}
.stat-sub {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	color: rgba(255,255,255,0.35);
	margin-top: 8px;
	letter-spacing: 2px;
	display: block;
}
/* ナビゲーション矢印 */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 52px;
	height: 52px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	backdrop-filter: blur(8px);
}
.slider-nav:hover {
	background: rgba(255,255,255,0.22);
	transform: translateY(-50%) scale(1.08);
}
.slider-nav.prev {
	left: 28px;
}
.slider-nav.next {
	right: 28px;
}
/* ドット */
.slider-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.slider-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
	background: #fff;
	transform: scale(1.4);
}
/* スライド番号 */
.slider-count {
	position: absolute;
	bottom: 24px;
	right: 36px;
	font-family: 'futura-pt', sans-serif;
	font-size: 11px;
	color: rgba(255,255,255,0.3);
	letter-spacing: 2px;
	z-index: 10;
}
/* アクティブ時の光るライン */
.stat-line {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(to right, var(--green), var(--blue));
	z-index: 11;
	transition: none;
}
/* ===== INTRO ===== */
.intro {
	background: var(--white);
	padding: 100px 52px;
	position: relative;
	overflow: hidden;
}
.intro-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}
.intro-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 18px;
	font-weight: 700;
}
.intro-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.8;
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: 0.04em;
}
.intro-body {
	font-size: 20px;
	line-height: 2.3;
	color: var(--mid);
}
/* ===== INTRO SIDE BLOCK ===== */
.intro-side-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1100px;
	margin: 80px auto 0;
	padding: 0 0 80px;
}
.intro-side-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.8vw, 36px);
	line-height: 1.6;
	margin-bottom: 24px;
	letter-spacing: 0.04em;
}
.intro-side-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.intro-side-photo {
	height: 280px;
	border-radius: 4px;
}
/* ===== BEFORE/AFTER ===== */
.bfa {
	background: var(--bg);
	padding: 80px 0 0;
	overflow: hidden;
}
.bfa-header {
	padding: 0 0 32px;
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.bfa-header-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 700;
}
.bfa-header-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.bfa-header-hint {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
/* スライダー本体 */
.bfa-viewport {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.bfa-track {
	display: flex;
	width: 400%;
	transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
.bfa-slide {
	width: 25%;
	display: grid;
	grid-template-columns: 1fr 500px 1200px;
	height: 710px;
	position: relative;
}
/* 中央：Beforeカラム */
.bfa-before-col {
	background: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 20px;
	position: relative;
	z-index: 2;
}
/* 左：テキスト＋小さいbefore */
.bfa-left {
	background: var(--white);
	padding: 52px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.bfa-left::before {
	content: '';
	position: absolute;
	top: -150px;
	left: -180px;
	width: 700px;
	height: 700px;
	background: var(--yellow);
	border-radius: 60% 40% 70% 30% / 50% 60% 40% 55%;
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
}
.bfa-left > * {
	position: relative;
	z-index: 1;
}
justify-content: space-between;
position: relative;
z-index: 2;
}
.bfa-text-block {
	flex: 1;
}
.bfa-slide-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 14px;
	font-weight: 700;
}
.bfa-slide-num {
	font-family: 'futura-pt', sans-serif;
	font-size: 72px;
	line-height: 1;
	color: rgba(0,0,0,0.04);
	position: absolute;
	top: 24px;
	right: 20px;
	pointer-events: none;
}
.bfa-slide-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(26px, 2.8vw, 40px);
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: var(--dark);
	margin-bottom: 16px;
}
.bfa-slide-heading em {
	font-style: normal;
	color: var(--blue-l);
}
.bfa-slide-body {
	font-size: 20px;
	line-height: 2.1;
	color: var(--mid);
	margin-bottom: 18px;
}
.bfa-badge-row {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.bfa-badge {
	font-size: 12px;
	padding: 6px 14px;
	border-radius: 4px;
	letter-spacing: 1px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
}
.bfa-badge.g {
	background: var(--blue);
	color: #fff;
}
.bfa-badge.b {
	background: var(--blue);
	color: #fff;
}
/* 小さいbefore写真（左下） */
.bfa-before-wrap {
	position: relative;
	flex-shrink: 0;
}
.bfa-before-label {
	font-family: 'futura-pt', sans-serif;
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--mid);
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}
.bfa-before-photo {
	width: 100%;
	height: 300px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}
.bfa-before-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
}
.bfa-before-icon {
	font-size: 24px;
	opacity: 0.35;
}
.bfa-before-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.4);
}
/* 右：大きいafter写真（端まで） */
.bfa-right {
	position: relative;
	overflow: hidden;
}
.bfa-after-photo {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.bfa-after-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.6s ease;
}
.bfa-right:hover .bfa-after-inner {
	transform: scale(1.03);
}
.bfa-after-icon {
	font-size: 44px;
	opacity: 0.25;
}
.bfa-after-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.35);
}
/* "After"大文字 */
.bfa-after-word {
	position: absolute;
	top: 20px;
	left: 28px;
	font-family: 'futura-pt', sans-serif;
	font-size: clamp(52px, 7vw, 96px);
	color: rgba(255,255,255,0.75);
	line-height: 1;
	letter-spacing: -2px;
	pointer-events: none;
	z-index: 2;
	text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
/* 各部屋の配色 */
.bfa-slide:nth-child(1) .bfa-before-inner {
	background: url(../images/bfa_before_01.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(1) .bfa-after-inner {
	background: url(../images/bfa_after_01.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(2) .bfa-before-inner {
	background: url(../images/bfa_before_02.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(2) .bfa-after-inner {
	background: url(../images/bfa_after_02.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(3) .bfa-before-inner {
	background: url(../images/bfa_before_03.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(3) .bfa-after-inner {
	background: url(../images/bfa_after_03.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(4) .bfa-before-inner {
	background: url(../images/bfa_before_04.jpg) center/cover no-repeat;
}
.bfa-slide:nth-child(4) .bfa-after-inner {
	background: url(../images/bfa_after_04.jpg) center/cover no-repeat;
}
/* サムネイル */
.bfa-thumbs {
	display: flex;
	gap: 10px;
	padding: 16px 0 60px;
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}
.bfa-thumb {
	flex: 1;
	aspect-ratio: 1;
	border-radius: 12px;
	cursor: pointer;
	border: none;
	transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.bfa-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.28);
	transition: background 0.25s;
}
.bfa-thumb.active {
	box-shadow: 0 6px 20px rgba(32,88,160,0.25);
	transform: translateY(-3px);
}
.bfa-thumb.active::after {
	background: rgba(0,0,0,0.1);
}
.bfa-thumb-icon {
	display: none;
}
.bfa-thumb-text {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 1;
}
.bfa-thumb-room {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.bfa-thumb-hint {
	font-size: 9px;
	color: rgba(255,255,255,0.7);
	letter-spacing: 1px;
	display: block;
	margin-top: 2px;
}
.gallery {
	background: var(--bg);
	padding: 100px 52px;
}
.gallery-head {
	max-width: 1100px;
	margin: 0 auto 36px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.gallery-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 700;
}
.gallery-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.gallery-note {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
/* サムネイル */
.gallery-thumbs {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.g-thumb {
	position: relative;
	cursor: pointer;
	padding: 16px 0;
	border-radius: 0;
	height: auto;
	overflow: visible;
	transition: color 0.2s;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}
.g-thumb:hover {
	transform: none;
	box-shadow: none;
}
.g-thumb.active {
	transform: none;
	box-shadow: none;
	border-bottom: 2px solid var(--blue-l);
}
.g-thumb-inner {
	display: none;
}
.g-thumb-overlay {
	display: none;
}
.g-thumb-cap {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 1px;
	color: var(--mid);
}
.g-thumb.active .g-thumb-cap {
	color: var(--blue-l);
}
.g-thumb:hover .g-thumb-cap {
	color: var(--dark);
}
.g-1 {
	background: url(../images/gallery_thumb_01.jpg) center/cover no-repeat;
}
.g-2 {
	background: url(../images/gallery_thumb_02.jpg) center/cover no-repeat;
}
.g-3 {
	background: url(../images/gallery_thumb_03.jpg) center/cover no-repeat;
}
.g-4 {
	background: url(../images/gallery_thumb_04.jpg) center/cover no-repeat;
}
.g-5 {
	background: url(../images/gallery_thumb_05.jpg) center/cover no-repeat;
}
.g-thumb-icon {
	display: none;
}
.g-thumb-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.55);
	text-transform: uppercase;
}
.g-thumb-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 10px;
	background: rgba(28,26,22,0);
	transition: background 0.3s;
}
.g-thumb.active .g-thumb-overlay {
	background: rgba(28,26,22,0.08);
}
/* ドロワー */
.gallery-drawer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.gallery-drawer.open {
	max-height: 9999px;
}
.gallery-drawer-wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.drawer-panel {
	flex: 0 0 100%;
	min-width: 100%;
	display: block;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.drawer-panel.active {
	opacity: 1;
	pointer-events: auto;
}
/* ストーリーヘッダー */
.story-header {
	padding: 52px 0 36px;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.07);
	margin-top: 28px;
}
.story-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 11px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 700;
	display: block;
}
.story-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(30px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: var(--dark);
}
.story-heading em {
	font-style: normal;
	color: var(--blue-l);
}
/* テキストブロック */
.story-block {
	max-width: 640px;
	margin: 0 auto;
	padding: 28px 0;
}
.story-block-lead {
	font-size: 10px;
	color: var(--light);
	letter-spacing: 3px;
	font-family: 'futura-pt', sans-serif;
	text-transform: uppercase;
	margin-bottom: 14px;
	display: block;
}
.story-block-text {
	font-size: 20px;
	line-height: 2.4;
	color: var(--mid);
}
.story-block-text strong {
	color: var(--dark);
	font-weight: 700;
}
.story-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.story-chip {
	font-size: 11px;
	padding: 5px 16px;
	border-radius: 50px;
	letter-spacing: 1px;
}
.story-chip.g {
	background: var(--green-pale);
	color: var(--green);
}
.story-chip.b {
	background: var(--blue-pale);
	color: var(--blue);
}
.story-chip.o {
	background: var(--cream);
	color: var(--orange);
}
/* 写真 */
.story-photo {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	margin: 8px 0;
	position: relative;
}
.story-photo.tall {
	height: 520px;
}
.story-photo.mid {
	height: 360px;
}
.story-photo.sm {
	height: 260px;
	max-width: 440px;
	margin: 8px auto;
}
.story-photo-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.6s;
}
.story-photo:hover .story-photo-inner {
	transform: scale(1.02);
}
.story-photo-icon {
	font-size: 48px;
	opacity: 0.22;
}
.story-photo-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.32);
}
.sp-1a {
	background: url(../images/gallery_01a.jpg) center/cover no-repeat;
}
.sp-1b {
	background: url(../images/gallery_01b.jpg) center/cover no-repeat;
}
.sp-1c {
	background: url(../images/gallery_01c.jpg) center/cover no-repeat;
}
.sp-2a {
	background: url(../images/gallery_02a.jpg) center/cover no-repeat;
}
.sp-2b {
	background: url(../images/gallery_02b.jpg) center/cover no-repeat;
}
.sp-2c {
	background: url(../images/gallery_02c.jpg) center/cover no-repeat;
}
.sp-3a {
	background: url(../images/gallery_03a.jpg) center/cover no-repeat;
}
.sp-3b {
	background: url(../images/gallery_03b.jpg) center/cover no-repeat;
}
.sp-3c {
	background: url(../images/gallery_03c.jpg) center/cover no-repeat;
}
.sp-3d {
	background: url(../images/gallery_03d.jpg) center/cover no-repeat;
}
.sp-3e {
	background: url(../images/gallery_03e.jpg) center/cover no-repeat;
}
.sp-4a {
	background: url(../images/gallery_04a.jpg) center/cover no-repeat;
}
.sp-4b {
	background: url(../images/gallery_04b.jpg) center/cover no-repeat;
}
.sp-4c {
	background: url(../images/gallery_04c.jpg) center/cover no-repeat;
}
.sp-5a {
	background: url(../images/gallery_05a.jpg) center/cover no-repeat;
}
.sp-5b {
	background: url(../images/gallery_05b.jpg) center/cover no-repeat;
}
.story-photo-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 8px 0;
}
.story-photo-row .story-photo {
	margin: 0;
	height: 280px;
}
.story-caption {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1.5px;
	text-align: center;
	margin: 10px 0 24px;
	font-family: 'futura-pt', sans-serif;
}
/* 閉じるボタン */
.story-close-wrap {
	display: none;
}
text-align: center;
padding: 40px 0 20px;
}
.story-close {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: none;
	border: 1.5px solid rgba(0,0,0,0.12);
	cursor: pointer;
	font-family: 'futura-pt', sans-serif;
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--mid);
	text-transform: uppercase;
	padding: 12px 28px;
	border-radius: 4px;
	transition: all 0.2s;
}
.story-close:hover {
	border-color: var(--dark);
	color: var(--dark);
}
/* ===== 間取り ===== */
.madori {
	background: var(--white);
	padding: 100px 52px;
	position: relative;
	overflow: hidden;
}
.madori-head {
	max-width: 1100px;
	margin: 0 auto 64px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.madori-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 700;
}
.madori-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.madori-note {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
/* 1F・2F グリッド */
.madori-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.madori-card {
	background: var(--bg);
	border-radius: 24px;
	padding: 36px;
	position: relative;
	transition: box-shadow 0.3s;
}
.madori-card:hover {
	box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
/* 階数バッジ */
.madori-floor-badge {
	font-family: 'futura-pt', sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 16px;
	color: var(--blue);
}
.badge-1f, .badge-2f {
	background: none;
	color: var(--blue);
}
.madori-floor-title {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--dark);
	margin-bottom: 20px;
}
/* 間取り図 */
.madori-img {
	width: 100%;
	height: auto;
	background: transparent;
	margin-bottom: 24px;
}
.madori-img-icon {
	font-size: 40px;
	opacity: 0.2;
}
.madori-img-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--light);
	text-transform: uppercase;
}
/* 面積テーブル */
.madori-table {
	width: 100%;
	border-collapse: collapse;
}
.madori-table tr {
	border-bottom: 1px solid rgba(0,0,0,0.05);
}
.madori-table tr:last-child {
	border-bottom: none;
}
.madori-table td {
	padding: 10px 4px;
	font-size: 13px;
	line-height: 1.6;
}
.madori-table .td-room {
	color: var(--mid);
	font-weight: 300;
}
.madori-table .td-size {
	color: var(--dark);
	font-weight: 700;
	font-family: 'futura-pt', sans-serif;
	font-size: 16px;
	text-align: right;
}
.madori-table .td-unit {
	color: var(--light);
	font-size: 11px;
	text-align: right;
	padding-left: 4px;
}
/* DATA エリア */
.madori-data {
	max-width: 1100px;
	margin: 40px auto 0;
	background: var(--blue);
	border-radius: 20px;
	padding: 36px 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.madori-data-item {
	padding: 0 28px;
	border-right: 1px solid rgba(255,255,255,0.15);
}
.madori-data-item:first-child {
	padding-left: 0;
}
.madori-data-item:last-child {
	border-right: none;
}
.madori-data-label {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.55);
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}
.madori-data-val {
	font-family: 'futura-pt', sans-serif;
	font-weight: 700;
	font-size: 36px;
	color: #fff;
	line-height: 1;
}
.madori-data-unit {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-left: 3px;
}

/* スマホ縦並び */
@media (max-width: 768px) {
.madori {
	padding: 60px 20px;
}
.madori-head {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 40px;
}
.madori-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}
.madori-data {
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 28px;
}
.madori-data-item {
	border-right: none;
	padding: 0;
}
}

/* ===== ロケーション ===== */
.location {
	background: var(--bg);
	padding: 100px 52px;
}
.location-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.location-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 700;
}
.location-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 32px;
}
.location-body {
	font-size: 20px;
	line-height: 2.3;
	color: var(--mid);
	margin-bottom: 52px;
	max-width: 760px;
}
/* 学校区テーブル */
.school-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 52px;
}
.school-table thead tr {
	background: rgba(0,0,0,0.04);
}
.school-table thead td {
	padding: 14px 20px;
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 4px;
	color: var(--mid);
	text-transform: uppercase;
	text-align: center;
}
.school-table tbody tr {
	border-bottom: 1px solid rgba(0,0,0,0.06);
	background: var(--white);
}
.school-table tbody td {
	padding: 20px;
	font-size: 13px;
	color: var(--mid);
	vertical-align: middle;
}
.school-table .td-type {
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--light);
	width: 80px;
}
.school-table .td-name {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
}
.school-table .td-photo {
	width: 90px;
	text-align: center;
}
.school-table .td-photo-img {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
.school-table .td-photo-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.school-table .td-dist {
	text-align: right;
	font-size: 13px;
	color: var(--mid);
}
.school-table .td-dist strong {
	font-family: 'futura-pt', sans-serif;
	font-size: 20px;
	color: var(--dark);
}
/* 周辺施設グリッド */
.location-spots {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.spot-card {
	border-radius: 16px;
	overflow: hidden;
	background: var(--white);
}
.spot-photo {
	width: 100%;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	position: relative;
	overflow: hidden;
}
.spot-photo-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}
.sl-1 {
	background: linear-gradient(155deg, #8090a8, #607088);
}
.sl-2 {
	background: linear-gradient(155deg, #88a878, #688858);
}
.sl-3 {
	background: linear-gradient(155deg, #a09080, #806860);
}
.sl-4 {
	background: linear-gradient(155deg, #a8a870, #888850);
}
.spot-icon {
	font-size: 32px;
	opacity: 0.4;
}
.spot-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
}
.spot-info {
	padding: 14px 16px;
}
.spot-name {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: 0.04em;
	margin-bottom: 4px;
}
.spot-dist {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
/* アクセス */
.location-access {
	margin-top: 48px;
	background: var(--white);
	border-radius: 20px;
	padding: 36px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}
.access-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.access-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.access-icon.bus, .access-icon.train {
	background: none;
}
.access-label {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 3px;
	color: var(--light);
	text-transform: uppercase;
	margin-bottom: 6px;
	display: block;
}
.access-name {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}
.access-dist {
	font-size: 12px;
	color: var(--mid);
	letter-spacing: 1px;
}

@media (max-width: 768px) {
.location {
	padding: 60px 20px;
}
.location-spots {
	grid-template-columns: 1fr 1fr;
}
.location-access {
	grid-template-columns: 1fr;
}
}
.points {
	background: var(--white);
	padding: 120px 52px;
}/* ===== 間取り ===== */
.madori {
	background: var(--white);
	padding: 100px 52px;
	position: relative;
	overflow: hidden;
}
.madori-head {
	max-width: 1100px;
	margin: 0 auto 64px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.madori-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 700;
}
.madori-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.madori-note {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
/* 1F・2F グリッド */
.madori-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.madori-card {
	background: var(--bg);
	border-radius: 24px;
	padding: 36px;
	position: relative;
	transition: box-shadow 0.3s;
}
.madori-card:hover {
	box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
/* 階数バッジ */
.madori-floor-badge {
	font-family: 'futura-pt', sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 16px;
	color: var(--blue);
}
.badge-1f, .badge-2f {
	background: none;
	color: var(--blue);
}
.madori-floor-title {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--dark);
	margin-bottom: 20px;
}
/* 間取り図 */
.madori-img {
	width: 100%;
	height: auto;
	background: transparent;
	margin-bottom: 24px;
}
.madori-img-icon {
	font-size: 40px;
	opacity: 0.2;
}
.madori-img-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--light);
	text-transform: uppercase;
}
/* 面積テーブル */
.madori-table {
	width: 100%;
	border-collapse: collapse;
}
.madori-table tr {
	border-bottom: 1px solid rgba(0,0,0,0.05);
}
.madori-table tr:last-child {
	border-bottom: none;
}
.madori-table td {
	padding: 10px 4px;
	font-size: 13px;
	line-height: 1.6;
}
.madori-table .td-room {
	color: var(--mid);
	font-weight: 300;
}
.madori-table .td-size {
	color: var(--dark);
	font-weight: 700;
	font-family: 'futura-pt', sans-serif;
	font-size: 16px;
	text-align: right;
}
.madori-table .td-unit {
	color: var(--light);
	font-size: 11px;
	text-align: right;
	padding-left: 4px;
}
/* DATA エリア */
.madori-data {
	max-width: 1100px;
	margin: 40px auto 0;
	background: var(--blue);
	border-radius: 20px;
	padding: 36px 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.madori-data-item {
	padding: 0 28px;
	border-right: 1px solid rgba(255,255,255,0.15);
}
.madori-data-item:first-child {
	padding-left: 0;
}
.madori-data-item:last-child {
	border-right: none;
}
.madori-data-label {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.55);
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}
.madori-data-val {
	font-family: 'futura-pt', sans-serif;
	font-weight: 700;
	font-size: 36px;
	color: #fff;
	line-height: 1;
}
.madori-data-unit {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-left: 3px;
}

/* スマホ縦並び */
@media (max-width: 768px) {
.madori {
	padding: 60px 20px;
}
.madori-head {
	flex-direction: column;
	align-items: flex-start;

	gap: 8px;
	margin-bottom: 40px;
}
.madori-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}
.madori-data {
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 28px;
}
.madori-data-item {
	border-right: none;
	padding: 0;
}
}
/* ===== ロケーション ===== */
.location {
	background: var(--bg);
	padding: 100px 52px;
}
.location-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.location-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 700;
}
.location-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 32px;
}
.location-body {
	font-size: 20px;
	line-height: 2.3;
	color: var(--mid);
	margin-bottom: 52px;
	max-width: 760px;
}
/* 学校区テーブル */
.school-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 52px;
}
.school-table thead tr {
	background: rgba(0,0,0,0.04);
}
.school-table thead td {
	padding: 14px 20px;
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 4px;
	color: var(--mid);
	text-transform: uppercase;
	text-align: center;
}
.school-table tbody tr {
	border-bottom: 1px solid rgba(0,0,0,0.06);
	background: var(--white);
}
.school-table tbody td {
	padding: 20px;
	font-size: 13px;
	color: var(--mid);
	vertical-align: middle;
}
.school-table .td-type {
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--light);
	width: 80px;
}
.school-table .td-name {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
}
.school-table .td-photo {
	width: 90px;
	text-align: center;
}
.school-table .td-photo-img {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
.school-table .td-photo-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.school-table .td-dist {
	text-align: right;
	font-size: 13px;
	color: var(--mid);
}
.school-table .td-dist strong {
	font-family: 'futura-pt', sans-serif;
	font-size: 20px;
	color: var(--dark);
}
/* 周辺施設グリッド */
.location-spots {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.spot-card {
	border-radius: 16px;
	overflow: hidden;
	background: var(--white);
}
.spot-photo {
	width: 100%;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	position: relative;
	overflow: hidden;
}
.spot-photo-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}
.sl-1 {
	background: linear-gradient(155deg, #8090a8, #607088);
}
.sl-2 {
	background: linear-gradient(155deg, #88a878, #688858);
}
.sl-3 {
	background: linear-gradient(155deg, #a09080, #806860);
}
.sl-4 {
	background: linear-gradient(155deg, #a8a870, #888850);
}
.spot-icon {
	font-size: 32px;
	opacity: 0.4;
}
.spot-txt {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
}
.spot-info {
	padding: 14px 16px;
}
.spot-name {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 13px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: 0.04em;
	margin-bottom: 4px;
}
.spot-dist {
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
/* アクセス */
.location-access {
	margin-top: 48px;
	background: var(--white);
	border-radius: 20px;
	padding: 36px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}
.access-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.access-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.access-icon.bus, .access-icon.train {
	background: none;
}
.access-label {
	font-family: 'futura-pt', sans-serif;
	font-size: 9px;
	letter-spacing: 3px;
	color: var(--light);
	text-transform: uppercase;
	margin-bottom: 6px;
	display: block;
}
.access-name {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}
.access-dist {
	font-size: 12px;
	color: var(--mid);
	letter-spacing: 1px;
}

@media (max-width: 768px) {
.location {
	padding: 60px 20px;
}
.location-spots {
	grid-template-columns: 1fr 1fr;
}
.location-access {
	grid-template-columns: 1fr;
}
}
.points {
	background: var(--white);
	padding: 120px 52px;
}
.points-head {
	max-width: 1100px;
	margin: 0 auto 72px;
}
.points-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 700;
}
.points-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.points-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.pt {
	padding: 52px 48px;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	transition: transform 0.35s, box-shadow 0.35s;
	cursor: default;
}
.pt:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0,0,0,0.07);
	z-index: 1;
}
.pt-green {
	background: var(--green-pale);
}
.pt-blue {
	background: var(--blue-pale);
}
.pt-cream {
	background: var(--cream);
}
.pt-num {
	position: absolute;
	top: 16px;
	right: 28px;
	font-family: 'futura-pt', sans-serif;
	font-size: 110px;
	line-height: 1;
	opacity: 0.06;
	color: var(--dark);
	font-style: italic;
	pointer-events: none;
}
.pt-icon {
	font-size: 38px;
	margin-bottom: 20px;
	display: block;
	transition: transform 0.3s;
}
.pt:hover .pt-icon {
	transform: scale(1.2) rotate(-6deg);
}
.pt-title {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.65;
	margin-bottom: 14px;
	letter-spacing: 0.04em;
}
.pt-text {
	font-size: 13px;
	line-height: 2.1;
	color: var(--mid);
}
.pt-chip {
	display: inline-block;
	margin-top: 18px;
	font-size: 11px;
	padding: 5px 14px;
	border-radius: 50px;
	letter-spacing: 1.5px;
}
.pt-green .pt-chip {
	background: rgba(61,122,46,0.12);
	color: var(--green);
}
.pt-blue .pt-chip {
	background: rgba(32,88,160,0.12);
	color: var(--blue);
}
.pt-cream .pt-chip {
	background: rgba(212,112,42,0.12);
	color: var(--orange);
}
.spec {
	background: var(--blue-l);
	padding: 120px 52px;
	position: relative;
	overflow: hidden;
}
.spec-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.spec-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: rgba(255,255,255,0.28);
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 700;
}
.spec-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	margin-bottom: 72px;
}
.spec-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.spec-row {
	display: flex;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	gap: 24px;
	align-items: baseline;
	transition: border-color 0.2s;
}
.spec-row:first-child {
	border-top: 1px solid rgba(255,255,255,0.06);
}
.spec-row:hover {
	border-color: rgba(255,255,255,0.15);
}
.spec-k {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 11px;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.45);
	width: 100px;
	flex-shrink: 0;
	font-weight: 300;
}
.spec-v {
	font-size: 14px;
	color: rgba(255,255,255,0.78);
	line-height: 1.7;
	font-weight: 300;
}
.spec-v strong {
	font-family: 'futura-pt', sans-serif;
	font-size: 26px;
	font-weight: 400;
}
.spec-v small {
	font-size: 11px;
	color: rgba(255,255,255,0.28);
	display: block;
	margin-top: 3px;
}
.spec-right {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.spec-circle-img {
	width: 360px;
	height: 360px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 12px 48px rgba(0,0,0,0.18);
}
.spec-circle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.spec-box {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	color: rgba(255,255,255,0.18);
	transition: background 0.3s, border-color 0.3s;
}
.spec-box:hover {
	background: rgba(255,255,255,0.07);
	border-color: rgba(255,255,255,0.12);
}
.spec-box.madori {
	height: 320px;
}
.spec-box.map {
	height: 160px;
}
.spec-box-icon {
	font-size: 40px;
}
.spec-box-txt {
	font-size: 10px;
	letter-spacing: 3px;
	font-family: 'futura-pt', sans-serif;
}
.cta {
	background: var(--white);
	padding: 150px 52px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-deco-l {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(61,122,46,0.07), transparent 70%);
	border-radius: 50%;
	position: absolute;
	top: -60px;
	left: -60px;
	animation: floatCircle 10s ease-in-out infinite;
}
.cta-deco-r {
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(32,88,160,0.07), transparent 70%);
	border-radius: 50%;
	position: absolute;
	bottom: -40px;
	right: -40px;
	animation: floatCircle 10s ease-in-out 4s infinite;
}
@keyframes floatCircle {
0%, 100% {
transform:translateY(0) scale(1)
}
50% {
transform:translateY(-16px) scale(1.03)
}
}
.cta-inner {
	position: relative;
	z-index: 1;
	max-width: 560px;
	margin: 0 auto;
}
.cta-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 700;
}
.cta-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 3.5vw, 46px);
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.04em;
	margin-bottom: 18px;
}
.cta-sub {
	font-size: 14px;
	color: var(--mid);
	line-height: 2.2;
	margin-bottom: 52px;
}
.cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
}
.btn-g {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--yellow);
	color: var(--blue-l);
	padding: 18px 44px;
	border-radius: 6px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 1px;
	transition: opacity 0.2s, transform 0.2s;
}
.btn-g:hover {
	opacity: 0.88;
	transform: translateY(-2px);
}
.btn-b {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--blue);
	border: 2px solid var(--blue);
	padding: 18px 44px;
	border-radius: 6px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 1px;
	transition: all 0.2s;
}
.btn-b:hover {
	background: var(--blue);
	color: #fff;
	transform: translateY(-2px);
}
.cta-note {
	margin-top: 22px;
	font-size: 11px;
	color: var(--light);
	letter-spacing: 1px;
}
footer {
	background: var(--blue-l);
	padding: 36px 52px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-l {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer-logo {
	height: 32px;
	width: auto;
}
.footer-copy {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	letter-spacing: 2px;
}
.footer-r {
	font-size: 11px;
	color: rgba(255,255,255,0.4);
	letter-spacing: 1px;
}
.float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 99;
	display: flex;
	gap: 12px;
	align-items: center;
}
.float-tel {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--blue);
	border: 2px solid var(--blue);
	padding: 16px 28px;
	border-radius: 8px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(32,88,160,0.15);
	letter-spacing: 1px;
	background: #fff;
	transition: all 0.2s;
}
.float-tel:hover {
	background: var(--blue);
	color: #fff;
	transform: translateY(-2px);
}
.float-mail {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--yellow);
	color: var(--blue-l);
	padding: 16px 28px;
	border-radius: 8px;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(32,88,160,0.2);
	letter-spacing: 1px;
	transition: all 0.2s;
}
.float-mail:hover {
	filter: brightness(0.95);
	transform: translateY(-2px);
}
.reveal, .reveal-l, .reveal-r {
	opacity: 0;
	transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal {
	transform: translateY(36px);
}
.reveal-l {
	transform: translateX(-36px);
}
.reveal-r {
	transform: translateX(36px);
}
.reveal.on, .reveal-l.on, .reveal-r.on {
	opacity: 1;
	transform: none;
}
/* ===== REPAIR ===== */
.repair {
	background: var(--blue-l);
	padding: 100px 52px;
}
.repair-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.repair-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
}
.repair-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(22px, 2.5vw, 34px);
	line-height: 1.7;
	letter-spacing: 0.04em;
	color: var(--white);
}
.repair-text {
	font-size: 16px;
	line-height: 2.3;

	color: rgba(255,255,255,0.85);
	margin-bottom: 32px;
}
.repair-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.repair-tag {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.6);
	padding: 6px 14px;
	border-radius: 2px;
}
/* ===== 安心ポイント ===== */
.anshin-block {
	padding: 100px 52px;
}
.anshin-inner {
	max-width: 740px;
	margin: 0 auto;
	text-align: center;
}
.anshin-en {
	font-family: 'futura-pt', sans-serif;
	font-size: 10px;
	letter-spacing: 5px;
	color: var(--blue-l);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
}
.anshin-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-weight: 900;
	font-size: clamp(18px, 2.2vw, 26px);
	line-height: 1.7;
	margin-bottom: 24px;
	letter-spacing: 0.04em;
}
.anshin-body {
	font-size: 16px;
	line-height: 2.2;
	color: var(--mid);
}

/* ================================================
   MOBILE STYLES (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
/* ===== 1. ヘッダー ===== */
nav {
	padding: 0 16px;
	height: auto;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	flex-shrink: 0;
}
@media (min-width: 769px) {
.cloud-1 {
width: 200px;
height: auto;
}
.cloud-2 {
width: 160px;
height: auto;
}
}
.nav-logo img {
	width: 100px !important;
	height: auto !important;
}
.nav-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	padding: 6px 0;
	flex-shrink: 0;
	max-width: 55%;
}
.nav-right a[href^="tel"] {
	font-size: 11px;
	letter-spacing: 0;
	white-space: nowrap;
}
.nav-cta {
	padding: 6px 12px;
	font-size: 10px;
	white-space: nowrap;
}
/* ===== 2. ヒーロー ===== */
.hero {
	padding: 52px 0 0;
	min-height: auto;
}
.side-photo {
	display: none;
}
.hero-center {
	display: flex;
	flex-direction: column;
	text-align: center;
}
.hero-main-photo {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 4/3;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	position: relative;
	z-index: 1;
	order: 1;
}
.hero-tags {
	gap: 6px;
	padding: 16px 16px 0;
	justify-content: center;
	order: 2;
}
.hero-tag {
	font-size: 10px;
	padding: 4px 10px;
}
.hero-catch {
	order: 3;
	word-break: keep-all;
	font-size: clamp(20px, 5.5vw, 32px);
	padding: 12px 16px 0;
	z-index: 1;
	text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 24px rgba(0,0,0,0.5);
	/*color: var(--dark);*/
	margin-top: -130px !important;
	animation: none;
	opacity: 1;
}
.hero-sub {
	order: 4;
	padding: 0px 16px 0;
	font-size: 11px;
	color: #999;
	text-shadow: none;
}
.hero-photos-sp {
	display: flex;
	gap: 8px;
	padding: 6px 16px 0;
	order: 5;
}
.hero-photo-sp {
	flex: 1;
	aspect-ratio: 1;
	border-radius: 10px;
	overflow: hidden;
}
.hero-photo-sp img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-price-block {
	order: 6;
	border-left: 8px solid #fbec12;
	padding: 16px 20px;
	padding-right: 20px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 24px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	flex-direction: column;
	gap: 4px;
	overflow: hidden;
}
.hero-price-num {
	font-size: clamp(36px, 12vw, 52px);
}
.hero-price-label {
	font-size: clamp(16px, 5vw, 28px);
	margin-right: 8px;
}
.hero-price-unit {
	font-size: clamp(18px, 5vw, 28px);
}
.spec-circle-img {
	width: min(360px, 85vw);
	height: min(360px, 85vw);
}
.hero-cta-row {
	order: 6;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 16px 32px;
}
.hero-btn-g, .hero-btn-o {
	width: 100%;
	justify-content: center;
	text-align: center;
	padding: 16px;
	font-size: 13px;
}
/* スタッツスライダー */
.stats-slider {
	height: 380px;
}
.stat-big-num {
	font-size: 100px;
}
.stat-label {
	font-size: 11px;
}
.stat-sub {
	font-size: 11px;
}
/* イントロ */
.intro {
	padding: 60px 20px;
}
.intro-inner {
	grid-template-columns: 1fr;
	gap: 32px;
}
.intro-stats {
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.intro-heading {
	font-size: clamp(22px, 6vw, 32px);
	word-break: keep-all;
}
.intro-side-block {
	grid-template-columns: 1fr;
	gap: 28px;
	margin: 40px auto 0;
	padding: 0 0 40px;
}
.intro-side-photos {
	grid-template-columns: 1fr 1fr;
}
.intro-side-photo {
	height: 180px;
}
/* ===== 3. ビフォーアフター ===== */
.bfa {
	padding: 0 0 40px;
}
.bfa-header {
	padding: 48px 20px 24px;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}
.bfa-viewport {
	overflow: hidden;
}
.bfa-track {
	width: 400%;
}
.bfa-slide {
	width: 25%;
	min-width: 25%;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: auto;
}
.bfa-left {
	padding: 32px 20px;
	order: 3;
}
.bfa-right {
	height: 335px;
	order: 2;
	width: 100%;
}
.bfa-before-col {
	order: 1;
	width: 100%;
	padding: 0;
}
.bfa-before-photo {
	height: 295px;
	border-radius: 0;
}
.bfa-slide-heading {
	font-size: 26px;
	word-break: keep-all;
}
.bfa-after-word {
	font-size: 44px;
}
.bfa-thumbs {
	padding: 12px 20px 40px;
	gap: 6px;
}
.bfa-thumb {
	padding: 10px 12px;
	gap: 8px;
}
.bfa-thumb-room {
	font-size: 12px;
}
.bfa-thumb-hint {
	display: none;
}
/* ===== 4. ギャラリー（3列→2段） ===== */
.gallery {
	padding: 60px 20px;
}
.gallery-head {
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	margin-bottom: 24px;
}
.gallery-thumbs {
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.g-thumb {
	height: 110px;
}
/* ストーリードロワー */
.story-header {
	padding: 32px 0 24px;
}
.story-heading {
	font-size: 28px;
	word-break: keep-all;
}
.story-photo.tall {
	height: 350px;
}
.story-photo.mid {
	height: 290px;
}
.story-photo-row {
	grid-template-columns: 1fr;
}
.story-photo-row .story-photo {
	height: 270px;
}
.story-block {
	padding: 20px 0;
}
/* ===== スマホ：ギャラリー縦流し ===== */
.gallery-thumbs {
	display: none;
}
.gallery-drawer {
	display: block !important;
	max-height: none !important;
	overflow: visible !important;
}
.gallery-drawer-wrap {
	display: block !important;
	transform: none !important;
	transition: none !important;
}
.drawer-panel {
	display: block !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.drawer-panel:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.story-close-wrap {
	display: none !important;
}
/* 間取り */
.madori {
	padding: 60px 20px;
}
.madori-head {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 32px;
}
.madori-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}
.madori-card {
	padding: 24px 20px;
}
.madori-img {
	height: auto;
}
.madori-data {
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 24px 20px;
}
.madori-data-item {
	border-right: none;
	padding: 0;
}
.madori-data-val {
	font-size: 22px;
}
/* ロケーション */
.location {
	padding: 60px 20px;
}
.location-head {
	flex-direction: column;
	gap: 8px;
}
.school-table .td-type {
	display: none;
}
.school-table .td-dist {
	font-size: 11px;
}
.school-table .td-dist strong {
	font-size: 16px;
}
.location-spots {
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.spot-photo {
	height: 120px;
}
.location-access {
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 24px 20px;
}
/* ===== 5. 4つの魅力（1カラム・文字縦並び防止） ===== */
.points {
	padding: 60px 20px;
}
.points-grid {
	grid-template-columns: 1fr;
	gap: 10px;
}
.pt {
	padding: 32px 24px;
}
.pt-title {
	font-size: 17px;
	word-break: keep-all;
	line-height: 1.7;
}
.pt-text {
	word-break: keep-all;
}
/* スペック */
.spec {
	padding: 60px 20px;
}
.spec-layout {
	grid-template-columns: 1fr;
	gap: 40px;
}
/* REPAIR (mobile overrides) */
.repair {
	padding: 60px 20px;
}
.repair-inner {
	grid-template-columns: 1fr;
	gap: 28px;
}
/* 安心ポイント (mobile overrides) */
.anshin-block {
	padding: 60px 20px;
}
/* CTA */
.cta-section {
	padding: 60px 20px;
}
.cta-heading {
	font-size: 24px;
	word-break: keep-all;
}
.cta-btns {
	flex-direction: column;
	gap: 10px;
}
.cta-btn {
	width: 100%;
	text-align: center;
}
.btn-b, .btn-g {
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
}
/* フローティングCTA */
.float-cta {
	bottom: 12px;
	right: 12px;
	left: 12px;
	flex-direction: row;
	gap: 8px;
}
.float-mail {
	flex: 1;
	text-align: center;
	font-size: 12px;
	padding: 14px 10px;
}
}

/* ===== TABLET (769px〜1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
.side-photo-l {
	width: 243px;
	height: 304px;
	top: calc(50% - 350px);
}
.side-photo-r1 {
	width: 270px;
	height: 203px;
}
.side-photo-r2 {
	width: 182px;
	height: 182px;
	right: 0px;
	top: calc(45% - 20px);
	z-index: 0;
}
.hero-main-photo {
	max-width: 140vw !important;
	width: 140vw !important;
	margin-left: -20vw;
}
.hero-catch {
	font-size: clamp(24px, 3.8vw, 40px);
	margin-top: -260px;
}
.hero-center {
	align-items: center;
	display: flex;
	flex-direction: column;
}
.bfa-slide {
	display: flex;
	flex-direction: column;
	height: auto;
	width: 25%;
	min-width: 25%;
}
.bfa-left {
	order: 3;
	padding: 32px 40px;
}
.bfa-before-col {
	order: 1;
	width: 100%;
	padding: 0;
}
.bfa-before-photo {
	height: 300px;
	border-radius: 0;
}
.bfa-before-inner {
	min-height: 300px;
	height: 300px;
}
.bfa-after-inner {
	min-height: 360px;
	height: 360px;
}
.bfa-right {
	order: 2;
	height: 360px;
	width: 100%;
}
.bfa-track {
	width: 400%;
}
.intro-side-photo {
	height: 260px;
}
.spot-photo {
	height: 180px;
}
.story-photo.tall {
	height: 340px;
}
.story-photo.mid {
	height: 340px;
}
.story-photo.tall .story-photo-inner {
	height: 340px;
}
.story-photo.mid .story-photo-inner {
	height: 340px;
}
}

/* iPad mini (768px) 写真高さ補正 */
@media (min-width: 768px) and (max-width: 768px) {
.intro-side-photo {
	height: 220px;
}
.spot-photo {
	height: 160px;
}
}

/* ===== BFA GRID (〜2000px) ===== */
@media (min-width: 1025px) and (max-width: 2000px) {
.bfa-slide {
	grid-template-columns: 1fr 500px 800px;
}
}

/* ===== PC MID (1025px〜1920px) ===== */
@media (min-width: 1025px) and (max-width: 1920px) {
.hero-catch {
	font-size: clamp(30px, 4.5vw, 58px);
}
.hero-main-photo {
	max-width: 84vw;
}
}

/* ===== PC SMALL (1025px〜1600px) ===== */
@media (min-width: 1025px) and (max-width: 1600px) {
.bfa-slide {
	grid-template-columns: 1fr 300px 600px;
}
.hero {
	padding-bottom: 10px;
}
.hero-catch {
	font-size: clamp(30px, 4.5vw, 46px);
}
.hero-main-photo {
	max-width: 74vw;
	margin: -60px auto -60px;
	position: relative;
	top: -60px;
}
.side-photo-l {
	width: 324px;
	height: 405px;
	top: calc(50% - 250px);
}
.side-photo-r1 {
	width: 270px;
	height: 203px;
	right: 10px;
	top: calc(18% - 30px);
}
.side-photo-r2 {
	width: 243px;
	height: 243px;
	right: 50px;
	top: calc(45% - 30px);
}
}

/* ===== PC XS (1025px〜1280px) ===== */
@media (min-width: 1025px) and (max-width: 1280px) {
.hero-main-photo {
	max-width: 95vw;
	top: -90px;
}
.side-photo-l {
	top: calc(50% - 280px);
}
.side-photo-r2 {
	top: calc(45% - 60px);
}
.bfa-slide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	height: auto;
	width: 25%;
	min-width: 25%;
}
.bfa-left {
	grid-column: 1 / 3;
	grid-row: 2;
	padding: 32px 40px;
}
.bfa-before-col {
	grid-column: 1;
	grid-row: 1;
	width: 100%;
	padding: 0;
	justify-content: flex-start;
}
.bfa-before-photo {
	height: 400px;
	border-radius: 0;
}
.bfa-before-inner {
	min-height: 400px;
	height: 400px;
}
.bfa-right {
	grid-column: 2;
	grid-row: 1;
	height: 400px;
	width: 100%;
}
.bfa-after-inner {
	min-height: 400px;
	height: 400px;
}
}
/* ===== LP フォーム ===== */
.lp-form-section {
	background: var(--bg);
	padding: 80px 24px 100px;
}
.lp-form-inner {
	max-width: 720px;
	margin: 0 auto;
}
.lp-form-en {

	font-family: 'futura-pt', sans-serif;
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--blue);
	margin-bottom: 8px;
}
.lp-form-heading {
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-size: clamp(24px, 3vw, 36px);
	color: var(--dark);
	margin-bottom: 12px;
	line-height: 1.5;
}
.lp-form-sub {
	font-size: 13px;
	color: var(--mid);
	margin-bottom: 40px;
}
.lp-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.lp-form-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.lp-form-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark);
	display: flex;
	align-items: center;
	gap: 8px;
}
.lp-form-required {
	background: var(--blue);
	color: #fff;
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.lp-form-any {
	background: var(--light);
	color: #fff;
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 700;
}
.lp-form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #ddd8d0;
	border-radius: 8px;
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s;
}
.lp-form-input:focus {
	outline: none;
	border-color: var(--blue);
}
.lp-form-textarea {
	resize: vertical;
	min-height: 140px;
}
.lp-form-select {
	cursor: pointer;
}
.lp-form-checks {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lp-form-check {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--dark);
	cursor: pointer;
}
.lp-form-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--blue);
	cursor: pointer;
	flex-shrink: 0;
}
.lp-form-privacy {
	background: #f0f0ec;
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 12px;
	color: var(--mid);
	line-height: 1.8;
}
.lp-form-privacy a {
	color: var(--blue);
}
.lp-form-submit {
	text-align: center;
}
.lp-form-btn {
	background: var(--blue);
	color: #fff;
	font-family: toppan-bunkyu-midashi-go-std, sans-serif;
	font-size: 16px;
	padding: 18px 64px;
	border: none;
	border-radius: 60px;
	cursor: pointer;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
}
.lp-form-btn:hover {
	opacity: 0.8;
}
.sp-only {
	display: none;
}

@media (max-width: 768px) {
.sp-only {
	display: inline;
}
.lp-form-section {
	padding: 60px 20px 80px;
}
.cloud {
	width: 180px;
	height: 88px;
}
.cloud-1 {
	width: 150px;
	height: 73px;
}
}