.hero {
	background: var(--navy);
	color: #fff;
	position: relative;
	overflow: hidden;
	min-height: 88vh;
	display: flex;
	align-items: center;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 70% 20%, rgba(184, 148, 93, 0.13) 0%, transparent 55%),
		radial-gradient(circle at 20% 80%, rgba(26, 46, 90, 0.55) 0%, transparent 55%);
	z-index: 1;
}
.hero::after {
	content: '';
	position: absolute;
	top: 10%;
	right: 5%;
	width: 240px;
	height: 240px;
	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.2fr 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.6;
	letter-spacing: 0.03em;
	margin-bottom: 1.5rem;
	color: #fff;
}
.hero__title strong {
	font-weight: 600;
	color: var(--gold-light);
}
.hero__sub {
	font-family: var(--font-display);
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-style: italic;
	color: var(--gold-light);
	margin-bottom: 1.8rem;
	letter-spacing: 0.02em;
}
.hero__lead {
	color: rgba(255, 255, 255, 0.85);
	line-height: 2;
	margin-bottom: 2.25rem;
	max-width: 530px;
	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__options {
	border-top: 1px solid rgba(184, 148, 93, 0.4);
	border-bottom: 1px solid rgba(184, 148, 93, 0.4);
	padding: 2rem 0;
	position: relative;
}
.hero__options::before, .hero__options::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
}
.hero__options::before {
	top: -4px;
}
.hero__options::after {
	bottom: -4px;
}
.hero__options-label {
	text-align: center;
	font-family: var(--font-accent);
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	color: var(--gold-light);
	text-transform: uppercase;
	margin-bottom: 2rem;
}
.hero__option-row {
	display: grid;
	gap: 0;
}
.hero__option {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1.1rem 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__option:last-child {
	border-bottom: none;
}
.hero__option-num {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--gold-light);
	line-height: 1;
	min-width: 1.6em;
	text-align: center;
}
.hero__option-name {
	font-family: var(--font-serif-jp);
	font-size: 1rem;
	color: #fff;
	font-weight: 500;
	line-height: 1.4;
}
.hero__option-name-en {
	display: block;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.75rem;
	color: rgba(212, 182, 138, 0.7);
	margin-top: 0.15rem;
	letter-spacing: 0.05em;
}
.hero__option-tag {
	font-family: var(--font-accent);
	font-size: 0.55rem;
	letter-spacing: 0.18em;
	color: var(--navy);
	background: var(--gold-light);
	padding: 0.25rem 0.5rem;
	font-weight: 700;
}
.hero__option-tag--ghost {
	background: transparent;
	border: 1px solid rgba(212, 182, 138, 0.4);
	color: rgba(212, 182, 138, 0.8);
}
.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: 2rem;
	line-height: 1.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__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;
}
.choices {
	background: var(--paper);
}
.choices__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
	align-items: stretch;
}
.choice-card {
	background: #fff;
	padding: 2.5rem 2rem;
	border: 1px solid var(--gray-lighter);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all var(--transition);
}
.choice-card:hover {
	box-shadow: 0 10px 28px rgba(11, 25, 51, 0.06);
	border-color: var(--gold-light);
}
.choice-card__head {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--gray-lighter);
}
.choice-card__letter {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1.4rem;
	color: var(--gold);
	margin-bottom: 0.4rem;
}
.choice-card__title {
	font-family: var(--font-serif-jp);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
	margin-bottom: 0.3rem;
}
.choice-card__title-en {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.85rem;
	color: var(--gold);
	letter-spacing: 0.05em;
}
.choice-card__desc {
	font-size: 0.88rem;
	color: var(--gray);
	line-height: 1.95;
	margin-bottom: 1.5rem;
}
.choice-card__suited {
	font-family: var(--font-accent);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: var(--gold);
	margin-bottom: 0.6rem;
	text-transform: uppercase;
}
.choice-card__suited-text {
	font-family: var(--font-serif-jp);
	font-size: 0.9rem;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	font-weight: 500;
}
.choice-card__points {
	list-style: none;
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid var(--gray-lighter);
}
.choice-card__points li {
	position: relative;
	padding: 0.4rem 0 0.4rem 1.2rem;
	font-size: 0.82rem;
	color: var(--charcoal);
	line-height: 1.7;
}
.choice-card__points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1rem;
	width: 8px;
	height: 1px;
	background: var(--gold);
}
.totonoete {
	background: var(--ivory);
	position: relative;
	overflow: hidden;
}
.totonoete__intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 4rem;
	padding: 0 1.5rem;
}
.totonoete__big-quote {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--navy);
	line-height: 1.6;
	margin: 1rem 0 1.75rem;
	letter-spacing: 0.02em;
}
.totonoete__big-quote em {
	color: var(--gold);
	font-weight: 500;
}
.totonoete__intro-text {
	color: var(--gray);
	line-height: 2;
	font-size: 0.95rem;
}
.totonoete__hero {
	max-width: 900px;
	margin: 0 auto 4rem;
	padding: 0 1.5rem;
}
.totonoete__hero-image {
	background: #fff;
	border: 1px solid var(--gray-lighter);
	padding: 0;
	overflow: hidden;
	position: relative;
}
.totonoete__hero-image img,
.totonoete__hero-img {
	width: 100%;
	height: auto;
	display: block;
}
.totonoete__hero-placeholder {
	background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(184, 148, 93, 0.06) 12px 24px), var(--paper);
	border: 1px dashed var(--gray-light);
	aspect-ratio: 16 / 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem;
	text-align: center;
}
.totonoete__hero-placeholder-label {
	font-family: var(--font-accent);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 600;
}
.totonoete__hero-placeholder-note {
	font-family: var(--font-serif-jp);
	font-size: 0.85rem;
	color: var(--gray);
}
.totonoete__hero-caption {
	margin-top: 1.25rem;
	font-size: 0.82rem;
	color: var(--gray);
	line-height: 1.95;
	text-align: center;
	font-style: italic;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.totonoete__subhead {
	text-align: center;
	margin-bottom: 2rem;
}
.totonoete__subhead-en {
	display: block;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 0.95rem;
	color: var(--gold);
	letter-spacing: 0.15em;
	margin-bottom: 0.4rem;
}
.totonoete__subhead-jp {
	font-family: var(--font-serif-jp);
	font-weight: 500;
	font-size: clamp(1.15rem, 1.9vw, 1.45rem);
	color: var(--navy);
	letter-spacing: 0.04em;
}
.totonoete__benefits {
	max-width: var(--container);
	margin: 0 auto 4rem;
	padding: 0 1.5rem;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.benefit-item {
	background: #fff;
	padding: 1.75rem 1.5rem;
	border-top: 2px solid var(--gold);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.8rem;
}
.benefit-item__num {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--gold);
	line-height: 1;
}
.benefit-item__text {
	font-family: var(--font-serif-jp);
	font-size: 0.95rem;
	color: var(--navy);
	font-weight: 500;
	line-height: 1.65;
}
.totonoete__examples {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.totonoete__examples-lead {
	text-align: center;
	color: var(--gray);
	font-size: 0.88rem;
	line-height: 1.9;
	margin-bottom: 1.75rem;
}
.examples-list {
	list-style: none;
	background: #fff;
	border: 1px solid var(--gray-lighter);
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.example-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-right: 1px solid var(--gray-lighter);
	border-bottom: 1px solid var(--gray-lighter);
}
.example-item:nth-child(2n) {
	border-right: none;
}
.example-item:nth-last-child(-n+2) {
	border-bottom: none;
}
.example-item__letter {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1.25rem;
	color: var(--gold);
	flex-shrink: 0;
	width: 1.8em;
}
.example-item__text {
	font-family: var(--font-serif-jp);
	font-size: 0.92rem;
	color: var(--charcoal);
	line-height: 1.6;
}
.impl-note {
	max-width: 720px;
	margin: 3rem auto 0;
	padding: 0 1.5rem;
	text-align: center;
	color: var(--gray);
	font-size: 0.85rem;
	line-height: 1.95;
	font-style: italic;
}
.mid-cta {
	background: var(--cream);
	padding: 4rem 1.5rem;
	text-align: center;
	border-top: 1px solid var(--gray-lighter);
	border-bottom: 1px solid var(--gray-lighter);
}
.mid-cta--dark {
	background: var(--navy);
	color: #fff;
	border-top: 1px solid var(--navy-light);
	border-bottom: 1px solid var(--navy-light);
	position: relative;
	overflow: hidden;
}
.mid-cta--dark::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(184, 148, 93, 0.15);
	transform: rotate(45deg);
}
.mid-cta__inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.mid-cta__eyebrow {
	font-family: var(--font-accent);
	font-size: 0.7rem;
	letter-spacing: 0.35em;
	color: var(--gold);
	text-transform: uppercase;
	display: block;
	margin-bottom: 1.25rem;
}
.mid-cta--dark .mid-cta__eyebrow {
	color: var(--gold-light);
}
.mid-cta__lead {
	font-family: var(--font-serif-jp);
	font-size: 1.05rem;
	color: var(--navy);
	line-height: 1.85;
	font-weight: 500;
	margin-bottom: 1.75rem;
}
.mid-cta--dark .mid-cta__lead {
	color: #fff;
}
.mid-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.15rem 2.6rem;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-accent);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid var(--navy);
	transition: all var(--transition);
	min-height: 54px;
}
.mid-cta__btn::after {
	content: '→';
	transition: transform var(--transition);
}
.mid-cta__btn:hover {
	background: var(--gold);
	border-color: var(--gold);
	opacity: 1;
}
.mid-cta__btn:hover::after {
	transform: translateX(6px);
}
.mid-cta__btn--inverted {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}
.mid-cta__btn--inverted:hover {
	background: transparent;
	color: var(--gold-light);
	border-color: var(--gold-light);
}
.mid-cta__note {
	margin-top: 1.25rem;
	font-size: 0.75rem;
	color: var(--gray);
	letter-spacing: 0.05em;
}
.mid-cta--dark .mid-cta__note {
	color: rgba(255, 255, 255, 0.6);
}
.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;
}
.cases-typical {
	background: var(--cream);
	padding: 6rem 0;
}
.cases-typical__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.case-typical {
	background: #fff;
	padding: 2.5rem 2rem;
	border-top: 3px solid var(--gold);
	position: relative;
	display: flex;
	flex-direction: column;
}
.case-typical__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--gray-lighter);
	gap: 0.75rem;
}
.case-typical__num {
	font-family: var(--font-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 1rem;
	color: var(--gold);
	letter-spacing: 0.1em;
}
.case-typical__tag {
	font-family: var(--font-accent);
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	color: var(--gold);
	background: var(--cream);
	padding: 0.35rem 0.7rem;
	text-transform: uppercase;
	font-weight: 600;
}
.case-typical__title {
	font-family: var(--font-serif-jp);
	font-size: 1.15rem;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.5;
}
.case-typical__situation {
	font-size: 0.88rem;
	color: var(--gray);
	line-height: 1.95;
	margin-bottom: 1.5rem;
}
.case-typical__approach {
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid var(--gray-lighter);
}
.case-typical__approach-label {
	font-family: var(--font-accent);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	font-weight: 600;
}
.case-typical__approach-text {
	font-size: 0.85rem;
	color: var(--charcoal);
	line-height: 1.95;
}
.cases-typical__note {
	text-align: center;
	margin-top: 2.5rem;
	color: var(--gray);
	font-size: 0.78rem;
	padding: 0 1.5rem;
	line-height: 1.8;
}
.area {
	padding: 4.5rem 0;
	background: var(--paper);
}
.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;
}
.wpcf7-spinner {
	display: none;
}
.contact__form-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.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-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;
}
.form-field textarea {
	resize: vertical;
	min-height: 120px;
}
.wpcf7-list-item {
	margin: 0;
}
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-checkbox {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}
.wpcf7-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: var(--paper);
    border: 1px solid var(--gray-lighter);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 48px;
}
.wpcf7-radio .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.form-checkbox-group {
	/* display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem; */
}
.form-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1rem;
	background: var(--paper);
	border: 1px solid var(--gray-lighter);
	font-size: 0.85rem;
	cursor: pointer;
	transition: all var(--transition);
	min-height: 48px;
}
.form-checkbox-label:has(input:checked) {
	background: var(--cream);
	border-color: var(--gold);
}
.form-checkbox-label input {
	width: auto;
	min-height: auto;
}
.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);
	}
	.choices__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.examples-list {
		grid-template-columns: 1fr;
	}
	.example-item:nth-child(2n) {
		border-right: none;
	}
	.example-item {
		border-right: none;
	}
	.example-item:nth-last-child(-n+2) {
		border-bottom: 1px solid var(--gray-lighter);
	}
	.example-item:last-child {
		border-bottom: none;
	}
	.process__flow {
		grid-template-columns: 1fr 1fr;
	}
	.process-step::after {
		display: none;
	}
	.cases-typical__grid {
		grid-template-columns: 1fr;
	}
}
@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.65;
		margin-bottom: 1rem;
	}
	.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 {
		flex-direction: column;
		gap: 0.75rem;
	}
	.hero__btn {
		padding: 1rem 1.5rem;
		font-size: 0.78rem;
		width: 100%;
		justify-content: center;
	}
	.hero__options {
		padding: 1.5rem 0;
	}
	.hero__option {
		padding: 0.95rem 0.3rem;
	}
	.hero__option-num {
		font-size: 1.25rem;
	}
	.hero__option-name {
		font-size: 0.92rem;
	}
	.hero__option-tag {
		font-size: 0.5rem;
		padding: 0.2rem 0.4rem;
	}
	.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.5rem;
	}
	.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;
	}
	.choices__grid {
		padding: 0 1.25rem;
		gap: 1rem;
	}
	.choice-card {
		padding: 2rem 1.5rem;
	}
	.choice-card__title {
		font-size: 1.2rem;
	}
	.totonoete__big-quote {
		font-size: 1.2rem;
	}
	.totonoete__intro-text {
		font-size: 0.88rem;
	}
	.totonoete__hero {
		padding: 0 1.25rem;
	}
	.totonoete__hero-caption {
		font-size: 0.78rem;
	}
	.totonoete__subhead-jp {
		font-size: 1.1rem;
	}
	.benefits-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
		padding: 0 1.25rem;
	}
	.benefit-item {
		padding: 1.4rem 1rem;
		gap: 0.6rem;
	}
	.benefit-item__num {
		font-size: 1.3rem;
	}
	.benefit-item__text {
		font-size: 0.88rem;
	}
	.totonoete__examples {
		padding: 0 1.25rem;
	}
	.example-item {
		padding: 1rem 1.25rem;
		gap: 0.75rem;
	}
	.example-item__letter {
		font-size: 1.1rem;
	}
	.example-item__text {
		font-size: 0.85rem;
	}
	.impl-note {
		padding: 0 1.25rem;
	}
	.mid-cta {
		padding: 2.5rem 1.25rem;
	}
	.mid-cta__lead {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}
	.mid-cta__btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
		padding: 1rem 1.5rem;
	}
	.mid-cta__eyebrow {
		font-size: 0.62rem;
		letter-spacing: 0.25em;
	}
	.mid-cta__note {
		font-size: 0.7rem;
	}
	.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;
	}
	.cases-typical {
		padding: 3.5rem 0;
	}
	.cases-typical__grid {
		padding: 0 1.25rem;
		gap: 1rem;
	}
	.case-typical {
		padding: 1.8rem 1.5rem;
	}
	.case-typical__title {
		font-size: 1.05rem;
	}
	.case-typical__situation {
		font-size: 0.85rem;
	}
	.case-typical__approach-text {
		font-size: 0.82rem;
	}
	.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;
	}
	.contact {
		padding: 3.5rem 0;
	}
	.contact__form-wrap {
		padding: 0 1.25rem;
	}
	.wpcf7-form {
		padding: 1.75rem 1.5rem;
	}
	.form-checkbox-group {
		grid-template-columns: 1fr;
	}
	.form-submit {
		width: 100%;
		padding: 1.1rem 1.5rem;
	}
}
@media (max-width: 380px) {
	.hero__title {
		font-size: 1.35rem;
	}
}