/* 10万円LP制作プラン - Stylesheet */

:root {
	/* Colors */
	--primary-blue: #1a2b4a;
	--primary-blue-dark: #111d33;
	--primary-blue-mid: #2d4a7a;
	--accent-orange: #e85d2a;
	--accent-orange-light: #f07040;
	--neutral-gray: #f8f9fb;
	--neutral-gray-dark: #e8ecf1;
	--text-dark: #111827;
	--text-medium: #4b5563;
	--text-light: #9ca3af;
	--white: #FFFFFF;
	--success-green: #22c55e;
	--border-color: #e5e7eb;
	--bg-subtle: #f9fafb;

	/* Typography */
	--font-main: 'Noto Sans JP', sans-serif;
	--font-display: 'Roboto', sans-serif;

	/* Spacing */
	--section-padding: 80px;
	--section-padding-mobile: 48px;
}

body {
	font-family: var(--font-main);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid var(--neutral-gray-dark);
	transition: all 0.3s ease;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.logo-text {
	display: inline-block;
	line-height: 0;
	position: relative;
	top: 3px;
}

.logo-text img {
	height: 38px;
	width: auto;
	display: block;
	transition: height 0.3s ease;
}

.nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-link {
	color: var(--text-medium);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--primary-blue);
	transition: width 0.2s ease;
}

.nav-link:hover {
	color: var(--primary-blue);
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link-cta {
	background: var(--accent-orange);
	color: var(--white) !important;
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: 700;
	transition: background 0.2s ease;
}

.nav-link-cta::after {
	display: none;
}

.nav-link-cta:hover {
	background: #d14e1f;
	color: var(--white);
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 28px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	transition: all 0.3s ease;
}

.hamburger-line {
	width: 100%;
	height: 3px;
	background-color: var(--primary-blue);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 58px;
	right: -100%;
	width: 100%;
	height: calc(100vh - 58px);
	background: var(--white);
	z-index: 999;
	transition: right 0.3s ease;
	overflow-y: auto;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
	right: 0;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	padding: 40px 24px;
	gap: 0;
}

.mobile-nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	padding: 20px 0;
	border-bottom: 1px solid var(--neutral-gray-dark);
	transition: all 0.3s ease;
	display: block;
	text-align: center;
}

.mobile-nav-link:last-child {
	border-bottom: none;
}

.mobile-nav-link:active {
	background-color: var(--neutral-gray);
	padding-left: 16px;
}

.mobile-nav-link-cta {
	background: var(--accent-orange);
	color: var(--white) !important;
	text-align: center;
	border-radius: 6px;
	margin: 8px 16px 0;
	padding: 12px 20px;
	font-weight: 700;
	border-bottom: none !important;
}

.mobile-nav-link-cta:active {
	background: #d14e1f;
}

/* Overlay for mobile menu */
body.menu-open {
	overflow: hidden;
}

/* Hero Section */
.hero {
	position: relative;
	overflow: hidden;
	background: #eef1f6;
	height: 620px;
	margin-top: 58px;
}

/* Scrolling LP Background */
.hero-scroll-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	padding: 20px 0;
}

.hero-scroll-row {
	overflow: hidden;
	width: 100%;
}

.hero-scroll-track {
	display: flex;
	gap: 20px;
	width: max-content;
}

.hero-scroll-track--left {
	animation: scrollLeft 80s linear infinite;
}

.hero-scroll-track--right {
	animation: scrollRight 80s linear infinite;
}

.hero-scroll-img {
	width: 260px;
	height: 260px;
	object-fit: cover;
	object-position: top;
	border-radius: 10px;
	flex-shrink: 0;
	opacity: 0.55;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@keyframes scrollLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.hero-scroll-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(238, 241, 246, 0.55) 0%,
		rgba(238, 241, 246, 0.7) 40%,
		rgba(238, 241, 246, 0.8) 100%
	);
	z-index: 1;
}

/* Hero Sequential Animation Keyframes */
@keyframes heroSlideInLeft {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes heroFadeInScale {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes heroPointPopUp {
	0% {
		opacity: 0;
		transform: translateY(24px) scale(0.9);
	}
	60% {
		opacity: 1;
		transform: translateY(-4px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Hero Content Flex Container */
.hero-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0px;
	padding: 0 5%;
}

/* Hero Person (Left Side) */
.hero-person {
	flex-shrink: 0;
	width: 390px;
	margin-bottom: -100px;
	z-index: 3;
	opacity: 0;
	animation: heroSlideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-person-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: bottom left;
}

/* Hero Right (Title + Points) */
.hero-right {
	width: 800px;
	flex-shrink: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding-top: 40px;
	padding-bottom: 24px;
}

/* Hero Center Title (SVG Image) */
.hero-center {
	width: 100%;
	max-width: 780px;
	z-index: 4;
	opacity: 0;
	animation: heroFadeInScale 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.hero-title-img {
	width: 100%;
	height: auto;
	display: block;
}

/* Hero Feature Points */
.hero-features {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-top: 16px;
	z-index: 5;
}

.hero-point-img {
	height: 155px;
	width: auto;
	display: block;
	opacity: 0;
	animation: heroPointPopUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-point-img:nth-child(1) {
	animation-delay: 1.3s;
}

.hero-point-img:nth-child(2) {
	animation-delay: 1.5s;
}

.hero-point-img:nth-child(3) {
	animation-delay: 1.7s;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.15s ease;
	cursor: pointer;
	border: none;
}

.btn-large {
	padding: 14px 32px;
	font-size: 16px;
}

.btn-primary {
	background: var(--accent-orange);
	color: var(--white);
	box-shadow: none;
}

.btn-primary:hover {
	background: var(--accent-orange-light);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(232, 93, 42, 0.25);
}

.btn-secondary {
	background: var(--white);
	color: var(--primary-blue);
	border: 1px solid var(--border-color);
}

.btn-secondary:hover {
	background: var(--bg-subtle);
	color: var(--primary-blue);
	transform: translateY(-1px);
	border-color: var(--primary-blue-mid);
}

/* Section Styles */
.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-label {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--accent-orange);
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.section-header-overlay {
	position: relative;
	text-align: center;
	padding: 0;
}

.section-label-background {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-display);
	font-size: 120px;
	font-weight: 900;
	color: var(--text-dark);
	opacity: 0.04;
	letter-spacing: 8px;
	white-space: nowrap;
	z-index: 0;
	pointer-events: none;
	line-height: 1;
}

.cta .section-label-background {
	display: none;
}

.section-header-content {
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: 42px;
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.4;
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}

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

.section-description {
	font-size: 17px;
	color: var(--text-light);
	line-height: 1.7;
	max-width: 560px;
	margin: 0 auto;
}

.text-small {
	font-size: 14px;
	color: var(--text-light);
}

/* Problems Section */
.problems {
	padding: var(--section-padding) 0;
	background: var(--white);
}

.problems-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 36px;
}

.problem-card {
	background: var(--white);
	border-radius: 12px;
	padding: 32px 28px;
	transition: all 0.2s ease;
	border: 1px solid var(--border-color);
}

.problem-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.problem-card-image {
	margin: -32px -28px 20px;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}

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

.problem-number {
	font-family: var(--font-display);
	font-size: 64px;
	font-weight: 900;
	color: var(--accent-orange);
	opacity: 0.12;
	margin-bottom: -20px;
	letter-spacing: -0.03em;
	line-height: 1;
}

.problem-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.problem-list {
	list-style: none;
}

.problem-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.7;
}

.problem-list li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: var(--accent-orange);
	font-weight: bold;
}

.problem-conclusion {
	text-align: center;
	background: var(--primary-blue);
	color: var(--white);
	padding: 24px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
}

/* Solution Section */
.solution {
	padding: var(--section-padding) 0;
	background: var(--primary-blue);
	color: var(--white);
}

.solution-content {
	max-width: 1000px;
	margin: 0 auto;
}

.solution-title {
	text-align: center;
	margin-bottom: 24px;
}

.solution-title-main {
	display: block;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
}

.solution-title-highlight {
	display: block;
	font-family: var(--font-display);
	font-size: 42px;
	font-weight: 800;
	color: var(--accent-orange);
}

.solution-description {
	text-align: center;
	font-size: 17px;
	margin-bottom: 48px;
	opacity: 0.9;
}

.solution-features {
	display: flex;
	justify-content: center;
	gap: 32px;
}

.solution-feature {
	text-align: center;
	background: var(--white);
	border: none;
	border-radius: 16px;
	padding: 32px 48px;
	min-width: 240px;
	position: relative;
	overflow: hidden;
}

.solution-feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 3px;
	background: var(--accent-orange);
	border-radius: 0 0 2px 2px;
}

.solution-feature-label {
	font-size: 14px;
	color: var(--text-medium);
	opacity: 1;
	margin-bottom: 12px;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.solution-feature-value {
	font-family: var(--font-display);
	font-size: 72px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--accent-orange);
	font-variant-numeric: tabular-nums;
}

.countup {
	display: inline-block;
	min-width: 1em;
}

.solution-feature-unit {
	font-size: 28px;
	margin-left: 4px;
	color: var(--text-dark);
}

/* Reasons Section */
.reasons {
	padding: var(--section-padding) 0;
	background: var(--neutral-gray);
}

.reason-block {
	background: var(--white);
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 24px;
	box-shadow: none;
	border: 1px solid var(--border-color);
}

.reason-block:last-child {
	margin-bottom: 0;
}

.reason-header {
	margin-bottom: 20px;
}

.reason-number {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--accent-orange);
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.reason-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-dark);
}

.reason-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.reason-content.full-width {
	display: flex;
	flex-direction: column;
}

.reason-points {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 0;
}

.reason-point {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
	flex: 1;
}

.reason-point-icon {
	font-size: 72px;
	flex-shrink: 0;
}

.reason-icon-svg {
	width: 72px;
	height: 72px;
	display: block;
}

.reason-point-image {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	overflow: hidden;
	background: var(--neutral-gray);
	border: 1px dashed var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.reason-point-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.reason-point-desc {
	font-size: 16px;
	color: var(--text-medium);
}

.reason-summary-wrap {
	text-align: center;
	margin-top: 16px;
}

.reason-summary {
	display: inline;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	background-image: linear-gradient(var(--accent-orange), var(--accent-orange));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 100% 3px;
	padding-bottom: 2px;
	line-height: 2;
}

.reason-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

.workflow-diagram {
	display: flex;
	align-items: center;
	gap: 12px;
}

.workflow-step {
	background: var(--primary-blue);
	color: var(--white);
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.workflow-arrow {
	font-size: 24px;
	color: var(--primary-blue);
	font-weight: bold;
}

.pattern-icons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.pattern-icon {
	background: var(--bg-subtle);
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	text-align: center;
	border: 1px solid var(--border-color);
}

.pattern-icon br {
	display: none;
}

/* Process Flow (Vertical Layout) */
.process-flow {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.process-flow .process-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	text-align: left;
	background: var(--white);
	border-radius: 12px;
	padding: 24px;
	box-shadow: none;
	transition: all 0.2s ease;
	border: 1px solid var(--border-color);
	opacity: 1;
	transform: none;
}

.process-flow .process-card.animate-in {
	opacity: 1;
	transform: none;
}

.process-flow .process-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	border-color: var(--neutral-gray-dark);
}

.process-flow .process-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	flex-shrink: 0;
}

.process-flow .process-icon-circle {
	position: relative;
	width: 48px;
	height: 48px;
	background: var(--primary-blue);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	transition: all 0.2s ease;
}

.process-flow .process-card:hover .process-icon-circle {
	transform: none;
	box-shadow: none;
	background: var(--primary-blue-mid);
}

.process-flow .process-icon-label {
	display: none;
}

.process-flow .process-icon-number {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.process-content {
	flex: 1;
}

.process-flow .process-card-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.process-flow .process-card-desc {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.6;
}

.process-arrow-down {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 4px 0;
	opacity: 1;
	transform: none;
	transition: none;
}

.process-arrow-down.animate-in {
	opacity: 1;
	transform: none;
}

.process-arrow-down svg {
	width: 20px;
	height: 20px;
	color: var(--neutral-gray-dark);
	opacity: 0.5;
	animation: none;
}

@keyframes arrowBounce {
	0%, 100% {
		transform: none;
	}
	50% {
		transform: none;
	}
}

/* ===== Timeline Layout for REASON 03 ===== */
.process-timeline {
	max-width: 700px;
	margin: 32px auto 0;
}

.timeline-step {
	display: flex;
	gap: 28px;
	position: relative;
}

.timeline-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 64px;
}

.timeline-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--primary-blue);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.timeline-step-label {
	font-family: var(--font-display);
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 1px;
	line-height: 1;
}

.timeline-step-number {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	margin-top: 2px;
}

.timeline-line {
	width: 2px;
	flex: 1;
	background: var(--border-color);
	min-height: 20px;
}

.timeline-body {
	flex: 1;
	display: flex;
	gap: 20px;
	padding-bottom: 32px;
	align-items: flex-start;
}

.timeline-step--last .timeline-body {
	padding-bottom: 0;
}

.timeline-image-placeholder {
	width: 160px;
	height: 100px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--neutral-gray);
	border: 1px solid var(--border-color);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.timeline-text {
	flex: 1;
	padding-top: 8px;
}

.timeline-step-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.timeline-step-desc {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.6;
}

/* Process Grid (Old 3-column Layout) */
.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px 40px;
	margin-top: 40px;
}

.process-card {
	text-align: center;
	background: var(--white);
	border-radius: 16px;
	padding: 32px 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid var(--neutral-gray);
}

.process-card:hover {
	transform: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	border-color: var(--neutral-gray-dark);
}

.process-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.process-icon-circle {
	position: relative;
	width: 48px;
	height: 48px;
	background: var(--primary-blue);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	transition: all 0.2s ease;
}

.process-card:hover .process-icon-circle {
	transform: none;
	box-shadow: none;
}

.process-icon-label {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 1px;
	margin-bottom: 4px;
}

.process-icon-number {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 900;
	color: var(--white);
	line-height: 1;
}

.process-icon-svg {
	display: none;
}

.process-card-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 12px;
}

.process-card-desc {
	font-size: 14px;
	color: var(--text-medium);
	line-height: 1.6;
}

/* Process Steps (Old Layout - Keep for reference) */
.process-steps {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 32px;
	overflow-x: auto;
	padding: 20px 0;
}

.process-step {
	flex: 1;
	min-width: 180px;
	background: var(--neutral-gray);
	padding: 24px 20px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-step-number {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--accent-orange);
	margin-bottom: 12px;
}

.process-step-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 8px;
}

.process-step-desc {
	font-size: 13px;
	color: var(--text-medium);
	line-height: 1.6;
}

.process-arrow {
	font-size: 24px;
	color: var(--primary-blue);
	align-self: center;
	flex-shrink: 0;
}

.process-benefits {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.process-benefit {
	font-size: 15px;
	color: var(--success-green);
	font-weight: 600;
}

/* Patterns Section */
.patterns {
	padding: var(--section-padding) 0;
	background: var(--white);
}

.patterns-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pattern-card {
	background: var(--white);
	border-radius: 12px;
	padding: 28px;
	box-shadow: none;
	border: 1px solid var(--border-color);
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

.pattern-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@keyframes shimmer {
	0% { left: -100%; }
	20% { left: 100%; }
	100% { left: 100%; }
}

@keyframes borderGlow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 42, 0); }
	50% { box-shadow: 0 0 12px 3px rgba(232, 93, 42, 0.4); }
}

.pattern-featured {
	background: var(--white);
	border: 2px solid var(--accent-orange);
	animation: borderGlow 3s ease-in-out infinite;
}

.pattern-badge {
	position: absolute;
	top: -12px;
	right: 24px;
	background: var(--accent-orange);
	color: var(--white);
	padding: 8px 22px;
	border-radius: 6px;
	font-size: 17px;
	font-weight: 700;
	overflow: hidden;
}

.pattern-badge::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.3) 40%,
		rgba(255, 255, 255, 0.6) 50%,
		rgba(255, 255, 255, 0.3) 60%,
		transparent 100%
	);
	transform: skewX(-20deg);
	animation: shimmer 3s ease-in-out infinite;
	pointer-events: none;
}

.pattern-label {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.pattern-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.pattern-subtitle {
	font-size: 14px;
	color: var(--text-medium);
	margin-bottom: 24px;
}

.pattern-mockup {
	background: var(--bg-subtle);
	border-radius: 8px;
	padding: 0;
	margin-bottom: 20px;
	box-shadow: none;
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.pattern-mockup img {
	width: 100%;
	height: auto;
	display: block;
}

.mockup-section {
	background: var(--white);
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 4px;
	font-size: 14px;
	color: var(--text-light);
	text-align: center;
	border: 1px solid var(--border-color);
}

.mockup-section:last-child {
	margin-bottom: 0;
}

.mockup-header {
	background: var(--primary-blue);
	color: var(--white);
	border: none;
}

.mockup-fv {
	background: var(--primary-blue);
	color: var(--white);
	padding: 16px 8px;
	border: none;
}

.mockup-cta {
	background: var(--white);
	color: var(--text-light);
	border: 1px solid var(--border-color);
}

.pattern-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pattern-feature {
	font-size: 15px;
	color: var(--text-medium);
}

.pattern-cta {
	margin-top: auto;
	padding-top: 24px;
	text-align: center;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--accent-orange);
	border: none;
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.15s ease;
}

.btn-outline:hover {
	background: #d14e1f;
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(232, 93, 42, 0.3);
}

.btn-outline svg {
	width: 16px;
	height: 16px;
}

/* Benefits Section */
.benefits {
	padding: var(--section-padding) 0;
	background: rgb(26, 43, 74);
}

.benefits .section-title {
	color: var(--white);
}

.benefits .section-label-background {
	color: rgba(255, 255, 255, 0.08);
	opacity: 1;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.benefit-card {
	background: var(--white);
	border-radius: 12px;
	padding: 32px 28px;
	box-shadow: none;
	border: 1px solid var(--border-color);
	transition: all 0.2s ease;
}

.benefit-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-number {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--accent-orange);
	background: rgba(232, 93, 42, 0.08);
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}

.benefit-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.benefit-list {
	list-style: none;
}

.benefit-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.7;
}

.benefit-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success-green);
	font-weight: bold;
}

/* Pricing Section */
.pricing {
	padding: var(--section-padding) 0;
	background: var(--white);
}

.pricing-main {
	max-width: 100%;
	margin: 0 auto 48px;
	background: var(--white);
	border-radius: 12px;
	padding: 40px;
	color: var(--text-dark);
	border: 2px solid var(--primary-blue);
}

.pricing-header {
	text-align: center;
	margin-bottom: 32px;
}

.pricing-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text-dark);
}

.pricing-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}

.pricing-amount {
	font-family: var(--font-display);
	font-size: 64px;
	font-weight: 800;
	color: var(--primary-blue);
	letter-spacing: -0.02em;
}

.pricing-currency {
	font-size: 30px;
	font-weight: 700;
	color: var(--text-dark);
}

.pricing-tax {
	font-size: 16px;
	color: var(--text-light);
}

.pricing-table {
	background: var(--bg-subtle);
	border-radius: 10px;
	overflow: hidden;
}

.pricing-row {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 16px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
	border-bottom: none;
}

.pricing-label {
	font-weight: 600;
	font-size: 16px;
	color: var(--text-dark);
}

.pricing-value {
	font-size: 16px;
	color: var(--text-medium);
}

.pricing-options {
	max-width: 100%;
	margin: 0 auto;
}

.pricing-options-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-blue);
	text-align: center;
	margin-bottom: 32px;
}

.pricing-options-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.pricing-option {
	background: var(--neutral-gray);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
}

.pricing-option-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 12px;
}

.pricing-option-desc {
	font-size: 16px;
	color: var(--text-medium);
	margin-bottom: 16px;
}

.pricing-option-price {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-orange);
}

/* Support Section */
.support {
	padding: var(--section-padding) 0;
	background: var(--neutral-gray);
}

.support-header {
	text-align: center;
	margin-bottom: 64px;
}

.support-subtitle {
	font-size: 16px;
	color: var(--text-medium);
	margin-top: 16px;
	line-height: 1.8;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-bottom: 48px;
}

.support-service {
	background: var(--white);
	border-radius: 12px;
	padding: 32px;
	box-shadow: none;
	border: 1px solid var(--border-color);
}

.support-visual {
	margin-bottom: 24px;
}

.support-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: none;
}

.support-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.support-list {
	list-style: none;
	margin-bottom: 32px;
}

.support-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.7;
}

.support-list li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: var(--accent-orange);
	font-weight: bold;
}

.support-pricing {
	background: var(--bg-subtle);
	border-radius: 8px;
	padding: 16px;
}

.support-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--white);
}

.support-price-row:last-child {
	border-bottom: none;
}

.support-price-label {
	font-size: 14px;
	color: var(--text-medium);
}

.support-price-value {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-blue);
}

.support-services {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.support-service-item {
	background: var(--bg-subtle);
	border: 1px solid var(--border-color);
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
}

.support-cta {
	text-align: center;
	background: var(--primary-blue);
	color: var(--white);
	padding: 24px;
	border-radius: 10px;
}

.support-cta-text {
	font-size: 16px;
	font-weight: 600;
}

/* CTA Section */
.cta {
	padding: 80px 0;
	background: var(--primary-blue);
	color: var(--white);
	text-align: center;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.4;
}

.cta-description {
	font-size: 18px;
	margin-bottom: 32px;
	opacity: 0.9;
	line-height: 1.7;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-icon {
	font-size: 20px;
}

/* Footer */
.footer {
	background: var(--primary-blue-dark);
	color: var(--white);
	padding: 48px 0 24px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 48px;
	margin-bottom: 32px;
}

.footer-logo {
	margin-bottom: 12px;
}

.footer-logo-img {
	height: 52px;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
}

.footer-company-name {
	font-size: 14px;
	opacity: 0.7;
}

.footer-heading {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--white);
	letter-spacing: 0.05em;
}

.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-address,
.footer-tel,
.footer-email {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.85;
}

.footer-address strong,
.footer-tel strong,
.footer-email strong {
	opacity: 1;
}

.footer-company-label {
	font-size: 16px;
	font-weight: 700;
	opacity: 1;
}

.footer-tel a,
.footer-email a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-tel a:hover,
.footer-email a:hover {
	color: var(--accent-orange);
}

.footer-bottom {
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
	font-size: 12px;
	opacity: 0.6;
}

/* Page Top Button */
.page-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	background: var(--primary-blue);
	color: var(--white);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 999;
}

.page-top.visible {
	opacity: 1;
	visibility: visible;
}

.page-top:hover {
	background: var(--primary-blue-dark);
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-top:active {
	transform: translateY(-2px);
}

.page-top svg {
	width: 24px;
	height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero {
		height: 500px;
	}

	.hero-person {
		width: 260px;
	}

	.hero-point-img {
		height: 120px;
	}

	.hero-features {
		gap: 12px;
	}

	.problems-grid,
	.benefits-grid,
	.patterns-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.reason-content {
		grid-template-columns: 1fr;
	}
	
	.process-steps {
		flex-direction: column;
	}
	
	.process-arrow {
		display: none;
	}
	
	.support-grid {
		grid-template-columns: 1fr;
	}

	.pricing-options-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-price {
		flex-wrap: wrap;
		justify-content: center;
	}

	.pricing-tax {
		width: 100%;
		text-align: center;
		margin-top: -12px;
	}

	.pricing-row {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 14px 20px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 48px;
	}

	/* Show hamburger, hide desktop nav */
	.nav {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero {
		height: auto;
		min-height: 420px;
		margin-top: 52px;
	}

	.hero-content {
		position: relative;
		flex-direction: column;
		align-items: center;
		padding: 0 5%;
	}

	.hero-right {
		width: 100%;
		padding-top: 40px;
		padding-bottom: 0;
		order: -1;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-center {
		max-width: 94%;
		margin: 0 auto;
	}

	/* 下段：女性(左) + バッジ(右) の中央配置 */
	.hero-person {
		width: 220px;
		margin-bottom: -70px;
		margin-left: -160px;
	}

	.hero-point-img {
		height: 100px;
	}

	.hero-features {
		position: absolute;
		bottom: 48px;
		left: 52%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-items: center;
		gap: 6px;
		margin-top: 0;
	}

	.hero-features .hero-point-img:first-child {
		grid-column: 1 / -1;
	}

	.hero-scroll-img {
		width: 180px;
		height: 180px;
	}

	/* Workflow diagram SP */
	.workflow-diagram {
		gap: 8px;
	}

	.workflow-step {
		padding: 8px 12px;
		font-size: 13px;
	}

	.workflow-arrow {
		font-size: 18px;
	}

	.section-label-background {
		font-size: 64px;
		letter-spacing: 4px;
	}

	.problem-img {
		height: 160px;
		object-fit: cover;
	}

	.section-header-overlay {
		padding: 0;
	}

	.section-title {
		font-size: 26px;
	}

	.solution-title-main {
		font-size: 22px;
	}

	.solution-title-highlight {
		font-size: 32px;
	}

	.solution-features {
		flex-direction: column;
		gap: 32px;
	}

	.reason-block {
		padding: 24px 20px;
	}

	.reason-title {
		font-size: 22px;
	}

	.reason-points {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 0;
	}

	.reason-point {
		align-items: flex-start;
		flex-direction: row;
		text-align: left;
		gap: 12px;
	}

	.reason-point-icon {
		font-size: 32px;
	}

	.reason-icon-svg {
		width: 40px;
		height: 40px;
	}

	.process-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0;
	}

	.process-flow .process-card {
		flex-direction: row;
		gap: 16px;
		padding: 20px;
	}

	.process-flow .process-icon-circle {
		width: 40px;
		height: 40px;
	}

	.process-flow .process-icon-number {
		font-size: 16px;
	}

	.process-flow .process-card-title {
		font-size: 16px;
	}

	.process-flow .process-card-desc {
		font-size: 13px;
	}

	.process-arrow-down svg {
		width: 18px;
		height: 18px;
	}

	.process-card {
		padding: 24px 20px;
	}

	.process-icon-circle {
		width: 40px;
		height: 40px;
	}

	.process-icon-number {
		font-size: 16px;
	}

	.process-icon-svg {
		width: 20px;
		height: 20px;
		bottom: 10px;
	}

	.reason-point-image {
		max-width: 120px;
	}

	.timeline-step {
		gap: 16px;
	}

	.timeline-marker {
		width: 48px;
	}

	.timeline-circle {
		width: 48px;
		height: 48px;
	}

	.timeline-step-label {
		font-size: 8px;
	}

	.timeline-step-number {
		font-size: 16px;
	}

	.timeline-body {
		flex-direction: column;
		gap: 12px;
		padding-bottom: 24px;
	}

	.timeline-image-placeholder {
		width: 100%;
		height: 120px;
	}

	.timeline-step-title {
		font-size: 17px;
	}

	.timeline-step-desc {
		font-size: 14px;
	}

	.reason-visual {
		margin-top: -4px;
	}

	.pattern-icons {
		flex-direction: row;
		gap: 8px;
		margin-top: 0;
	}

	.pattern-icon br {
		display: inline;
	}

	.cta-title {
		font-size: 28px;
	}

	.page-top {
		bottom: 16px;
		right: 16px;
		width: 36px;
		height: 36px;
	}

	.page-top svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 640px) {
	/* Container */
	.container {
		padding: 0 16px;
	}

	/* Hero */
	.hero {
		height: auto;
		min-height: 340px;
	}

	.hero-content {
		padding: 0 4%;
	}

	.hero-person {
		width: 180px;
		margin-bottom: -55px;
		margin-left: -160px;
	}

	.hero-right {
		padding-top: 36px;
		padding-bottom: 4px;
	}

	.hero-center {
		max-width: 100%;
	}

	.hero-point-img {
		height: 84px;
	}

	.hero-features {
		bottom: 36px;
		left: 53%;
		right: auto;
		gap: 4px;
	}

	.hero-scroll-img {
		width: 120px;
		height: 120px;
	}

	.hero-scroll-track {
		gap: 12px;
	}

	/* Section common */
	.section-title {
		font-size: 22px;
	}

	.section-description {
		font-size: 15px;
	}

	.section-label-background {
		font-size: 48px;
		letter-spacing: 2px;
	}

	.section-header {
		margin-bottom: 32px;
	}

	/* Problem */
	.problem-card {
		padding: 24px 20px;
	}

	.problem-card-image {
		margin: -24px -20px 16px;
	}

	.problem-number {
		font-size: 48px;
	}

	.problem-title {
		font-size: 18px;
	}

	.problem-list li {
		font-size: 14px;
		line-height: 1.6;
	}

	.problem-conclusion {
		font-size: 16px;
		padding: 20px 16px;
	}

	/* Solution */
	.solution-title-main {
		font-size: 18px;
	}

	.solution-title-highlight {
		font-size: 26px;
	}

	.solution-description {
		font-size: 15px;
		margin-bottom: 32px;
	}

	.solution-feature {
		padding: 24px 20px;
		min-width: unset;
	}

	.solution-feature-value {
		font-size: 48px;
	}

	.solution-feature-unit {
		font-size: 20px;
	}

	/* Reason */
	.reason-block {
		padding: 20px 16px;
	}

	.reason-title {
		font-size: 19px;
	}

	.reason-point-title {
		font-size: 16px;
	}

	.reason-point-desc {
		font-size: 13px;
	}

	/* Workflow diagram */
	.workflow-diagram {
		gap: 6px;
	}

	.workflow-step {
		padding: 6px 10px;
		font-size: 12px;
	}

	.workflow-arrow {
		font-size: 16px;
	}

	/* Pattern */
	.pattern-title {
		font-size: 20px;
	}

	.pattern-feature {
		font-size: 14px;
	}

	/* Benefit */
	.benefit-card {
		padding: 24px 20px;
	}

	.benefit-title {
		font-size: 18px;
	}

	.benefit-list li {
		font-size: 14px;
	}

	/* CTA */
	.cta {
		padding: 48px 0;
	}

	.cta-title {
		font-size: 24px;
	}

	.cta-description {
		font-size: 15px;
	}

	/* Pricing */
	.pricing-options-grid {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer {
		padding: 36px 0 20px;
	}

	.footer-main {
		gap: 32px;
	}

	.footer-logo-img {
		height: 44px;
	}

	.footer-company-name {
		font-size: 13px;
	}

	.footer-heading {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.footer-address,
	.footer-tel,
	.footer-email {
		font-size: 13px;
	}

	.footer-copyright {
		font-size: 11px;
	}
}

/* Print Styles */
@media print {
	.header,
	.cta,
	.footer {
		display: none;
	}
}