.hero {
	background: var(--navy);
	color: #fff;
	position: relative;
	overflow: hidden;
	min-height: 92vh;
	display: flex;
	align-items: center;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 15%, rgba(184, 148, 93, 0.13) 0%, transparent 55%),
		radial-gradient(circle at 85% 85%, rgba(26, 46, 90, 0.55) 0%, transparent 55%);
	z-index: 1;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -80px;
	width: 320px;
	height: 320px;
	border: 1px solid rgba(184, 148, 93, 0.15);
	transform: rotate(45deg);
	z-index: 1;
}
.hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
	padding: 5rem 1.5rem;
	width: 100%;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 5rem;
	align-items: center;
}
.hero__left {
	border-left: 1px solid rgba(184, 148, 93, 0.3);
	padding-left: 2.5rem;
}
.hero__breadcrumb {
	font-family: var(--font-accent);
	font-size: 0.7rem;
	letter-spacing: 0.35em;
	color: var(--gold-light);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	text-transform: uppercase;
}
.hero__breadcrumb::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gold);
}
.hero__chapter {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1.05rem;
	color: var(--gold-light);
	margin-bottom: 1rem;
	letter-spacing: 0.1em;
}
.hero__title {
	font-family: var(--font-serif-jp);
	font-weight: 400;
	font-size: clamp(1.7rem, 3.4vw, 2.8rem);
	line-height: 1.55;
	letter-spacing: 0.03em;
	margin-bottom: 1.5rem;
	color: #fff;
}
.hero__title strong {
	font-weight: 600;
	color: var(--gold-light);
}
.hero__tagline {
	font-family: var(--font-serif-jp);
	font-size: clamp(1.1rem, 1.7vw, 1.35rem);
	color: #fff;
	margin-bottom: 1rem;
	letter-spacing: 0.04em;
	font-weight: 400;
	line-height: 1.7;
}
.hero__tagline strong {
	color: var(--gold-light);
	font-weight: 600;
}
.hero__sub {
	font-family: var(--font-display);
	font-size: clamp(0.95rem, 1.4vw, 1.15rem);
	font-style: italic;
	color: var(--gold-light);
	margin-bottom: 1.8rem;
	letter-spacing: 0.02em;
	opacity: 0.85;
}
.hero__lead {
	color: rgba(255, 255, 255, 0.85);
	line-height: 2;
	margin-bottom: 2.25rem;
	max-width: 560px;
	font-size: 0.93rem;
}
.hero__btn-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.1rem 2.3rem;
	background: var(--gold);
	color: #fff;
	font-family: var(--font-accent);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	border: 1px solid var(--gold);
	text-transform: uppercase;
	transition: all var(--transition);
	min-height: 52px;
}
.hero__btn::after {
	content: '→';
	transition: transform var(--transition);
}
.hero__btn:hover {
	background: transparent;
	border-color: var(--gold-light);
	color: var(--gold-light);
	opacity: 1;
}
.hero__btn:hover::after {
	transform: translateX(6px);
}
.hero__btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}
.hero__btn--outline:hover {
	background: transparent;
	border-color: var(--gold-light);
	color: var(--gold-light);
}
.hero__right {
	position: relative;
	padding: 2rem 0;
}
.hero__dual-frame {
	border-top: 1px solid rgba(184, 148, 93, 0.4);
	border-bottom: 1px solid rgba(184, 148, 93, 0.4);
	padding: 2.5rem 0;
	position: relative;
}
.hero__dual-frame::before, .hero__dual-frame::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
}
.hero__dual-frame::before {
	top: -4px;
}
.hero__dual-frame::after {
	bottom: -4px;
}
.hero__dual-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: center;
}
.hero__dual-item {
	text-align: center;
}
.hero__dual-label {
	font-family: var(--font-accent);
	font-size: 0.68rem;
	letter-spacing: 0.3em;
	color: var(--gold-light);
	text-transform: uppercase;
	margin-bottom: 0.7rem;
}
.hero__dual-num {
	font-family: var(--font-editorial);
	font-weight: 400;
	font-size: clamp(3.5rem, 7vw, 5.5rem);
	line-height: 0.95;
	color: var(--gold-light);
	letter-spacing: -0.03em;
}
.hero__dual-num em {
	font-style: italic;
	font-weight: 300;
}
.hero__dual-num-unit {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.35em;
	color: var(--gold);
	margin-left: 0.2em;
}
.hero__dual-cap {
	font-family: var(--font-serif-jp);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.5rem;
}
.hero__dual-divider {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--gold);
}
.hero__dual-foot {
	text-align: center;
	margin-top: 1.5rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--gold-light);
}
.trust-strip {
	background: var(--paper);
	padding: 3rem 0;
	border-bottom: 1px solid var(--gray-lighter);
}
.trust-strip__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.trust-item {
	text-align: center;
	padding: 0 1rem;
	border-right: 1px solid var(--gray-lighter);
}
.trust-item:last-child {
	border-right: none;
}
.trust-item__num {
	font-family: var(--font-editorial);
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 1;
	color: var(--navy);
	margin-bottom: 0.4rem;
}
.trust-item__num em {
	font-style: italic;
	color: var(--gold);
	font-weight: 400;
}
.trust-item__label {
	font-family: var(--font-serif-jp);
	font-size: 0.78rem;
	color: var(--gray);
	letter-spacing: 0.08em;
}
section {
	padding: 6rem 0;
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.container--narrow {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section-head {
	text-align: center;
	margin-bottom: 4rem;
}
.section-head--left {
	text-align: left;
}
.section-head__eyebrow {
	font-family: var(--font-accent);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.35em;
	color: var(--gold);
	text-transform: uppercase;
	display: block;
	margin-bottom: 1rem;
}
.section-head__title-en {
	display: block;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 1rem;
	color: var(--gold);
	letter-spacing: 0.15em;
	margin-bottom: 0.5rem;
}
.section-head__title {
	font-family: var(--font-serif-jp);
	font-weight: 500;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	color: var(--navy);
	letter-spacing: 0.04em;
	line-height: 1.5;
}
.section-head__lead {
	margin-top: 1.5rem;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	color: var(--gray);
	font-size: 0.92rem;
	line-height: 2;
}
.cases {
	background: var(--paper);
}
.cases__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.case-card {
	background: #fff;
	border: 1px solid var(--gray-lighter);
	padding: 2.5rem 2rem;
	position: relative;
	transition: all var(--transition);
}
.case-card:hover {
	box-shadow: 0 10px 28px rgba(11, 25, 51, 0.06);
	border-color: var(--gold-light);
}
.case-card__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--gray-lighter);
	gap: 1rem;
}
.case-card__num {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1rem;
	color: var(--gold);
	letter-spacing: 0.1em;
	flex-shrink: 0;
}
.case-card__category {
	font-family: var(--font-accent);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--navy);
	text-transform: uppercase;
	text-align: right;
}
.case-card__title {
	font-family: var(--font-serif-jp);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}
.case-card__meta {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 0.6rem 1rem;
	font-size: 0.85rem;
	color: var(--gray);
}
.case-card__meta dt {
	font-family: var(--font-accent);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: var(--gold);
	text-transform: uppercase;
	padding-top: 4px;
}
.case-card__meta dd {
	color: var(--charcoal);
}
.speed-backing {
	padding: 6rem 0;
}
.speed-backing__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.speed-backing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.speed-card {
	background: #fff;
	padding: 2.5rem 2rem;
	border-top: 3px solid var(--gold);
	position: relative;
}
.speed-card__num {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 2.2rem;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 1.1rem;
}
.speed-card__title {
	font-family: var(--font-serif-jp);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.85rem;
	line-height: 1.55;
}
.speed-card__desc {
	font-size: 0.88rem;
	color: var(--gray);
	line-height: 2;
}
.difficult {
	background: var(--cream);
}
.difficult__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.diff-card {
	background: #fff;
	padding: 2.5rem 1.75rem;
	border: 1px solid var(--gray-lighter);
	position: relative;
	display: flex;
	flex-direction: column;
}
.diff-card__letter {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 700;
	font-size: 3rem;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 1.1rem;
}
.diff-card__en {
	font-family: var(--font-accent);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.diff-card__title {
	font-family: var(--font-serif-jp);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.8rem;
	line-height: 1.5;
}
.diff-card__desc {
	font-size: 0.83rem;
	color: var(--gray);
	line-height: 1.95;
}
.pro {
	padding: 6rem 0;
}
.pro__block {
	max-width: var(--container);
	margin: 0 auto;
	padding: 4.5rem 3rem;
	background: var(--navy);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.pro__block::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(184, 148, 93, 0.2);
	transform: rotate(45deg);
}
.pro__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 4rem;
	align-items: center;
}
.pro__eyebrow {
	font-family: var(--font-accent);
	font-size: 0.72rem;
	letter-spacing: 0.35em;
	color: var(--gold-light);
	margin-bottom: 1rem;
	display: block;
	text-transform: uppercase;
}
.pro__chapter {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 5rem;
	line-height: 1;
	color: var(--gold-light);
	margin-bottom: 0.5rem;
}
.pro__chapter-label {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--gold-light);
	font-size: 1rem;
}
.pro__title {
	font-family: var(--font-serif-jp);
	font-size: clamp(1.4rem, 2.3vw, 1.9rem);
	color: #fff;
	margin-bottom: 1.5rem;
	font-weight: 500;
	line-height: 1.55;
}
.pro__text {
	color: rgba(255, 255, 255, 0.85);
	line-height: 2;
	margin-bottom: 1.5rem;
	font-size: 0.93rem;
}
.pro__list {
	list-style: none;
	margin: 1.5rem 0 2rem;
}
.pro__list li {
	padding: 0.6rem 0 0.6rem 1.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pro__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.4rem;
	width: 12px;
	height: 1px;
	background: var(--gold-light);
}
.pro__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.1rem 2.3rem;
	background: var(--gold);
	color: #fff;
	font-family: var(--font-accent);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition: all var(--transition);
	min-height: 52px;
}
.pro__btn::after {
	content: '→';
}
.pro__btn:hover {
	background: transparent;
	color: var(--gold-light);
	box-shadow: inset 0 0 0 1px var(--gold-light);
	opacity: 1;
}
.process {
	background: var(--paper);
}
.process__flow {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
	position: relative;
}
.process-step {
	text-align: center;
	padding: 2rem 1rem;
	position: relative;
}
.process-step::after {
	content: '→';
	position: absolute;
	right: -1rem;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-display);
	color: var(--gold);
	font-size: 1.5rem;
}
.process-step:last-child::after {
	display: none;
}
.process-step__num {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 2.2rem;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 1rem;
}
.process-step__title {
	font-family: var(--font-serif-jp);
	font-size: 1rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.6rem;
	line-height: 1.5;
}
.process-step__desc {
	font-size: 0.82rem;
	color: var(--gray);
	line-height: 1.9;
}
.area {
	padding: 4.5rem 0;
}
.area__inner {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: center;
}
.area__list {
	display: flex;
	justify-content: center;
	margin: 2rem 0 1.5rem;
	flex-wrap: wrap;
	list-style: none;
	border-top: 1px solid var(--gray-lighter);
	border-bottom: 1px solid var(--gray-lighter);
}
.area__list li {
	font-family: var(--font-serif-jp);
	font-size: 1rem;
	color: var(--navy);
	padding: 1.4rem 2rem;
	font-weight: 500;
	border-right: 1px solid var(--gray-lighter);
	letter-spacing: 0.1em;
}
.area__list li:last-child {
	border-right: none;
}
.area__list li small {
	display: block;
	font-family: var(--font-accent);
	font-size: 0.62rem;
	color: var(--gold);
	letter-spacing: 0.25em;
	margin-bottom: 0.4rem;
}
.area__note {
	color: var(--gray);
	font-size: 0.88rem;
	line-height: 2;
	max-width: 600px;
	margin: 0 auto;
}
.contact {
	background: var(--ivory);
	padding: 6rem 0;
	border-top: 1px solid var(--gray-lighter);
}
.contact__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
	padding: 0 1.5rem;
}
.contact__channels {
	max-width: 720px;
	margin: 0 auto 1.5rem;
	padding: 0 1.5rem;
}
.contact__phone {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1.5rem;
	background: #fff;
	border-top: 3px solid var(--navy);
	transition: all var(--transition);
	position: relative;
}
.contact__phone:hover {
	background: var(--paper);
	opacity: 1;
}
.contact__phone-label {
	font-family: var(--font-accent);
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	font-weight: 600;
}
.contact__phone-number {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	color: var(--navy);
	letter-spacing: 0.04em;
	line-height: 1;
	margin-bottom: 0.5rem;
}
.contact__phone-hours {
	font-family: var(--font-serif-jp);
	font-size: 0.78rem;
	color: var(--gray);
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.6;
}
.contact__or {
	max-width: 720px;
	margin: 0 auto 1.5rem;
	padding: 0 1.5rem;
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	color: var(--gray);
	font-size: 0.95rem;
	position: relative;
}
.contact__or-inner {
	position: relative;
	padding: 0 1rem;
	background: var(--ivory);
	display: inline-block;
	z-index: 1;
}
.contact__or::after {
	content: '';
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	top: 50%;
	height: 1px;
	background: var(--gray-lighter);
	z-index: 0;
}
.contact__form-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.wpcf7-spinner {
	display: none;
}
.wpcf7-form {
	background: #fff;
	padding: 3rem;
	border: 1px solid var(--gray-lighter);
}
.contact__form-title {
	font-family: var(--font-serif-jp);
	font-size: 1.3rem;
	color: var(--navy);
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.contact__form-desc {
	font-size: 0.88rem;
	color: var(--gray);
	margin-bottom: 2rem;
	line-height: 1.9;
}
.form-field {
	margin-bottom: 1.5rem;
}
.form-role-options {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.15rem;
}
.form-role-option {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	cursor: pointer;
	padding: 0.55rem 0.25rem;
	transition: opacity var(--transition);
}
.form-role-option:hover {
	opacity: 0.7;
}
.form-role-option input[type="radio"] {
	cursor: pointer;
	accent-color: var(--gold);
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}
.form-role-option__text {
	font-family: var(--font-serif-jp);
	font-size: 0.88rem;
	color: var(--charcoal);
	line-height: 1.6;
}
.form-role-option__text small {
	color: var(--gray);
	font-size: 0.78rem;
	margin-left: 0.15rem;
}
.form-field__label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.5rem;
	font-family: var(--font-serif-jp);
}
.form-field__required {
	font-family: var(--font-accent);
	font-size: 0.65rem;
	color: #fff;
	background: var(--gold);
	padding: 0.15rem 0.5rem;
	letter-spacing: 0.1em;
	font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	padding: 0.95rem 1rem;
	font-family: inherit;
	font-size: 16px !important;
	background: var(--paper);
	border: 1px solid var(--gray-lighter);
	color: var(--charcoal);
	transition: border-color var(--transition);
	min-height: 48px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	outline: none;
	border-color: var(--gold);
	background: #fff;
}
input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: var(--gold);
	vertical-align: middle;
	margin-right: 0.3em;
}
.form-field input[type="radio"] {
	cursor: pointer;
	accent-color: var(--gold);
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}
.wpcf7-list-item {
	margin: 0;
}
.wpcf7-radio .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.form-field textarea {
	resize: vertical;
	min-height: 120px;
}
.form-submit-wrap {
	text-align: center;
	margin-top: 2.5rem;
}
.form-submit {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.15rem 3rem;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-accent);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	border: 1px solid var(--navy);
	text-transform: uppercase;
	transition: all var(--transition);
	min-height: 56px;
}
.form-submit::after {
	content: '→';
}
.form-submit:hover {
	background: var(--gold);
	border-color: var(--gold);
}
.form-note {
	text-align: center;
	font-size: 0.78rem;
	color: var(--gray);
	margin-top: 1.5rem;
	line-height: 1.8;
}
.form-other-link {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--gray-lighter);
	font-family: var(--font-serif-jp);
	font-size: 0.82rem;
	color: var(--gray);
	line-height: 1.95;
	text-align: center;
	letter-spacing: 0.02em;
}
.form-other-link a {
	color: var(--gold-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}
.form-other-link a:hover {
	color: var(--navy);
	opacity: 1;
}
@media (max-width: 980px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding: 4rem 1.25rem;
	}
	.hero__left {
		border-left: none;
		padding-left: 0;
	}
	.hero__right {
		padding: 0;
	}
	.trust-strip__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1rem;
	}
	.trust-item {
		border-right: none;
		padding: 0.5rem;
	}
	.trust-item:nth-child(odd) {
		border-right: 1px solid var(--gray-lighter);
	}
	.cases__grid {
		grid-template-columns: 1fr;
	}
	.speed-backing__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.difficult__grid {
		grid-template-columns: 1fr 1fr;
	}
	.pro__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.pro__block {
		padding: 3rem 2rem;
	}
	.pro__chapter {
		font-size: 3.5rem;
	}
	.process__flow {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	.process-step::after {
		display: none;
	}
}
@media (max-width: 760px) {
	section {
		padding: 3.5rem 0;
	}
	.hero {
		min-height: auto;
	}
	.hero__inner {
		padding: 2.5rem 1.25rem 3rem;
		gap: 2rem;
	}
	.hero__left {
		padding: 0;
		border: none;
	}
	.hero__breadcrumb {
		font-size: 0.62rem;
		letter-spacing: 0.25em;
		margin-bottom: 1.2rem;
	}
	.hero__breadcrumb::before {
		width: 24px;
	}
	.hero__chapter {
		font-size: 0.95rem;
	}
	.hero__title {
		font-size: 1.5rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}
	.hero__tagline {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}
	.hero__sub {
		font-size: 0.92rem;
		margin-bottom: 1.4rem;
	}
	.hero__lead {
		font-size: 0.87rem;
		line-height: 1.95;
		margin-bottom: 1.8rem;
	}
	.hero__btn-group {
		gap: 0.75rem;
		flex-direction: column;
	}
	.hero__btn {
		padding: 1rem 1.5rem;
		font-size: 0.78rem;
		width: 100%;
		justify-content: center;
	}
	.hero__dual-frame {
		padding: 1.5rem 0;
	}
	.hero__dual-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.hero__dual-divider {
		display: none;
	}
	.hero__dual-num {
		font-size: 3.5rem;
	}
	.trust-strip {
		padding: 2rem 0;
	}
	.trust-strip__inner {
		gap: 1rem;
		padding: 0 1.25rem;
	}
	.trust-item {
		padding: 0.5rem;
	}
	.trust-item__num {
		font-size: 1.6rem;
	}
	.trust-item__label {
		font-size: 0.7rem;
	}
	.section-head {
		margin-bottom: 2.5rem;
		padding: 0 1.25rem;
	}
	.section-head__title {
		font-size: 1.35rem;
		line-height: 1.55;
	}
	.cases__grid {
		padding: 0 1.25rem;
		gap: 1rem;
	}
	.case-card {
		padding: 1.8rem 1.5rem;
	}
	.case-card__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	.case-card__category {
		text-align: left;
	}
	.case-card__title {
		font-size: 1.05rem;
	}
	.case-card__meta {
		grid-template-columns: 80px 1fr;
		font-size: 0.82rem;
	}
	.speed-backing__inner {
		padding: 0 1.25rem;
	}
	.speed-card {
		padding: 1.8rem 1.5rem;
	}
	.speed-card__title {
		font-size: 1.05rem;
	}
	.difficult__grid {
		grid-template-columns: 1fr;
		padding: 0 1.25rem;
		gap: 1rem;
	}
	.diff-card {
		padding: 1.8rem 1.5rem;
	}
	.diff-card__title {
		font-size: 1.05rem;
	}
	.pro__block {
		padding: 2.5rem 1.5rem;
	}
	.pro__chapter {
		font-size: 3rem;
	}
	.pro__title {
		font-size: 1.2rem;
	}
	.pro__text {
		font-size: 0.88rem;
		line-height: 2;
	}
	.pro__list li {
		font-size: 0.85rem;
		padding-left: 1.3rem;
	}
	.pro__btn {
		width: 100%;
		justify-content: center;
		padding: 0.95rem 1.5rem;
	}
	.process__flow {
		grid-template-columns: 1fr;
		padding: 0 1.25rem;
		gap: 0.5rem;
	}
	.process-step {
		padding: 1.2rem 1rem;
		background: #fff;
		border-left: 3px solid var(--gold);
		text-align: left;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 1rem;
		align-items: center;
	}
	.process-step__num {
		font-size: 1.6rem;
		margin-bottom: 0;
	}
	.process-step__title {
		font-size: 0.95rem;
		margin-bottom: 0.2rem;
	}
	.process-step__desc {
		font-size: 0.78rem;
	}
	.area__list {
		flex-direction: column;
	}
	.area__list li {
		border-right: none;
		border-bottom: 1px solid var(--gray-lighter);
		width: 100%;
	}
	.area__list li:last-child {
		border-bottom: none;
	}
	.area__note {
		font-size: 0.82rem;
	}
	.contact {
		padding: 3.5rem 0;
	}
	.contact__form-wrap {
		padding: 0 1.25rem;
	}
	.wpcf7-form {
		padding: 1.75rem 1.5rem;
	}
	.contact__form-title {
		font-size: 1.15rem;
	}
	.form-submit {
		width: 100%;
		padding: 1.1rem 1.5rem;
	}
}
@media (max-width: 380px) {
	.hero__title {
		font-size: 1.35rem;
	}
	.hero__dual-num {
		font-size: 3rem;
	}
}
.buyback-fit {
	padding: 5.5rem 0;
	background: var(--paper);
}
.buyback-fit__inner {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.buyback-fit__eyebrow {
	font-family: var(--font-accent);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	color: var(--gold-deep);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 1rem;
}
.buyback-fit__title {
	font-family: var(--font-serif-jp);
	font-weight: 500;
	font-size: clamp(1.4rem, 2.4vw, 1.8rem);
	color: var(--navy);
	letter-spacing: 0.06em;
	text-align: center;
	margin-bottom: 0.6rem;
}
.buyback-fit__sub {
	text-align: center;
	color: var(--gray);
	font-size: 0.92rem;
	margin-bottom: 3rem;
	line-height: 1.9;
}
.buyback-fit__table {
	width: 100%;
	background: #fff;
	border-collapse: collapse;
}
.buyback-fit__table th, .buyback-fit__table td {
	padding: 1.1rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid var(--gray-lighter);
	font-size: 0.92rem;
	line-height: 1.7;
}
.buyback-fit__table th {
	font-family: var(--font-serif-jp);
	font-weight: 600;
	color: var(--navy);
	background: var(--ivory);
	width: 38%;
	letter-spacing: 0.04em;
}
.buyback-fit__table tr:last-child th, .buyback-fit__table tr:last-child td {
	border-bottom: none;
}
.buyback-fit__note {
	margin-top: 1.5rem;
	font-size: 0.82rem;
	color: var(--gray);
	text-align: center;
	line-height: 1.8;
}
@media (max-width: 760px) {
	.buyback-fit {
		padding: 3rem 0;
	}
	.buyback-fit__inner {
		padding: 0 1rem;
	}
	.buyback-fit__table th, .buyback-fit__table td {
		padding: 0.85rem 1rem;
		font-size: 0.85rem;
	}
	.buyback-fit__table th {
		width: 45%;
	}
}