/* Anyjob Top Page V3 Styles - Flat Design (No Shadows/Transitions) */

/* =========================================
   General Settings
   ========================================= */

body {
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
	line-height: 1.8;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 14px;
}

.lp-page.wrapper {
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

a {
	transition: none;
}

.text-white {
	color: #fff !important;
}
.text-blue {
	color: #269df3 !important;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}

/* Colors Theme */
:root {
	--primary-blue: #6caefc;
	--primary-blue-dark: #5a96db; /* Slightly darker shade for consistent theming if needed, auto-calculated */
	--primary-yellow: #fdd000;
	--primary-yellow-hover: #e5bc00;
	--bg-light-blue: #dcf2ff;
	--text-dark: #222222;
	--text-gray: #666666;
	--border-light: #eeeeee;
}

section {
	padding: 100px 0;
	position: relative;
	scroll-margin-top: 100px; /* Offset for sticky header */
}

section.no-padding {
	padding: 0;
}

.section-heading {
	text-align: left;
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: 20px;
}

.section-heading.text-white {
	color: #fff;
}

/* =========================================
   Header
   ========================================= */
.header-lp {
	background-color: var(--primary-blue);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid transparent;
}

.header-lp a,
.header-lp .nav-link {
	color: var(--text-dark) !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	padding: 10px 0;
	position: relative;
}

.header-lp .nav-link:after {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
}

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

.header-lp a:hover {
	opacity: 0.8;
}

.header-lp.scrolled {
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

.header-lp.scrolled a,
.header-lp.scrolled .nav-link {
	color: var(--primary-blue) !important;
}

.header-lp.scrolled .nav-link:after {
	background-color: var(--primary-blue);
}

.header-lp.scrolled .text-white {
	color: var(--primary-blue) !important;
}

/* Mobile Menu Fix */
@media (max-width: 768px) {
	.header-lp .navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}
	.header-lp .navbar-nav {
		flex-direction: column !important;
		gap: 10px !important;
	}
	.header-lp .nav-link {
		color: var(--primary-blue) !important; /* Blue text in white menu */
		padding: 10px 0;
		border-bottom: 1px solid #eee;
	}

	.header-lp .nav-item:last-child .nav-link {
		border-bottom: none;
	}

	.header-lp .nav-link:after {
		display: none; /* No hover underline on mobile */
	}
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
	background: var(--primary-blue);
	padding: 60px 0 60px;
	overflow: hidden;
}

.hero-section .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.hero-content {
	flex: 0 0 45%;
	max-width: 45%;
	min-width: 320px;
	padding-right: 30px;
	z-index: 2;
}

.hero-image {
	flex: 0 0 50%;
	max-width: 50%;
	min-width: 320px;
	text-align: right;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	/* Adjusted Size */
	width: 100%;
	max-width: 600px;
	height: auto;
	transform: none;
	transition: none;
	display: block;
}

.hero-image:hover img {
	transform: none;
}

.hero-subtitle {
	font-size: 26px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
	display: inline-block;
}

.small-note {
	font-size: 0.6em;
	vertical-align: bottom;
	color: var(--text-dark);
}

.hero-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 40px;
	color: var(--text-dark);
	letter-spacing: -0.01em;
}

.hero-cta .btn-yellow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-yellow);
	color: var(--text-dark);
	font-weight: 800;
	font-size: 24px;
	padding: 20px 60px;
	border-radius: 60px;
	text-decoration: none;
	line-height: 1.2;
}

.hero-cta .btn-yellow:hover {
	transform: none;
	background: var(--primary-yellow-hover);
	opacity: 0.9;
}

.btn-yellow-icon {
	font-size: 40px;
	margin-left: 12px;
}

.hero-note {
	font-size: 13px;
	margin-top: 40px;
	color: var(--text-dark);
	opacity: 0.9;
	display: block;
	width: 100%;
}

/* =========================================
   Problem Section
   ========================================= */
.problem-section {
	background-color: #fff;
}

.problem-section-content {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.problem-content {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	align-items: flex-start;
	margin-bottom: 30px;
}

.problem-text {
	flex: 1;
	min-width: 300px;
}

.problem-chart {
	flex: 1;
	max-width: 260px;
	text-align: center;
	background: #fff;
	padding: 0;
}

.problem-chart img {
	width: 100%;
	margin: 0 auto;
	display: block;
}

.problem-text h3 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 25px;
	display: inline-block;
	padding-left: 15px;
	border-left: 5px solid var(--primary-blue);
	line-height: 1.2;
}

/* =========================================
   Gig Issues Section
   ========================================= */
.gig-issues-section {
	background-color: #f8fbfe;
}

.issues-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.issue-item {
	border-radius: 4px;
}

.issue-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

/* =========================================
   About Anyjob Section (Side-by-Side Flex Layout)
   ========================================= */
.about-anyjob-section {
	background: var(--primary-blue);
}

.about-anyjob-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-end;
}

.about-lead {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark) !important;
	max-width: 800px;
	margin-bottom: 40px;
}

.about-grid {
	display: flex;
	align-items: center; /* Vertically center */
	justify-content: space-between;
	gap: 40px;
	text-align: left;
}

.about-content {
	flex: 1;
	min-width: 300px;
	background: rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-graphic {
	width: 100%;
	max-width: 38%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-graphic img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	border-radius: 4px;
}

@media (max-width: 991px) {
	.about-grid {
		flex-direction: column;
	}
	.about-graphic {
		margin-top: 20px;
		order: -1;
	}
}

/* =========================================
   Features Section
   ========================================= */
.features-section {
	background-color: #fff;
}

.feature-step {
	margin-bottom: 100px;
}

.feature-step:last-child {
	margin-bottom: 0;
}

/* Step 1 */
.step-1-layout {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.step-col-side {
	flex: 1;
	min-width: 250px;
	max-width: 350px;
}

.step-col-center {
	flex: 0 0 280px;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.pool-circle .circle-img {
	width: 100%; /* Reduced Icon */
	margin-bottom: 10px;
}

.center-label {
	font-weight: bold;
	font-size: 20px;
	color: var(--text-dark);
	text-align: center;
	line-height: 1.2;
}

.pool-item {
	margin-bottom: 40px;
	position: relative;
}

.pool-item h4 {
	font-weight: bold;
	font-size: 18px;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.pool-item p {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
}

/* Arrows */
.step-col-side.text-right .pool-item:after {
	content: "";
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 20px solid var(--primary-blue);
	position: absolute;
	right: -30px;
	top: 10px;
	display: none;
}

.step-col-side.text-left .pool-item:before {
	content: "";
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 20px solid var(--primary-blue);
	position: absolute;
	left: -30px;
	top: 10px;
	display: none;
}

@media (min-width: 992px) {
	.step-col-side.text-right .pool-item:after {
		display: block;
	}
	.step-col-side.text-left .pool-item:before {
		display: block;
	}
}

/* Features Steps */
.step-title-wrapper {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
	vertical-align: middle;
	margin-bottom: 20px;
}

.step-label {
	display: inline-block;
	background: var(--primary-blue);
	color: #fff;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: 700;
	margin-bottom: 15px;
	flex-shrink: 0;
}

.step-content {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	align-items: center;
}

.offer-types {
	flex: 1;
	min-width: 300px;
}

.step-image {
	flex: 1;
	max-width: 300px;
	text-align: center;
}

.step-image img {
	width: 100%;
	display: block;
	margin: 0 auto;
}

.offer-item {
	border-left: 5px solid var(--primary-blue);
	padding-left: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.offer-item:hover {
	transform: none;
}

.offer-item h4 {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 18px;
}

/* Step 3 */
.matching-diagram {
	flex: 1;
	min-width: 300px;
	border-radius: 4px;
	text-align: center;
}

.matching-diagram img {
	max-width: 100%;
	margin: 0 auto;
}

.matching-details {
	flex: 1;
	min-width: 300px;
}

.matching-details .note {
	font-size: 12px;
}

/* =========================================
   Use Cases Section
   ========================================= */
.use-cases-section {
	background-color: #f4f8fb;
}

.cases-grid {
	display: flex;
	flex-direction: row; /* Ensure side-by-side layout */
	flex-wrap: wrap;
	gap: 30px; /* Reduced gap slightly to fit better */
	justify-content: center;
}

.case-item {
	flex: 1;
	background: #fff;
	border-radius: 8px;
	padding: 25px;
	min-width: 480px; /* Allows 2 columns on standard screens (1140px container) */
}

.case-content-wrapper {
	display: flex;
	flex-direction: row; /* Keep Inner Layout: Text Left, Image Right */
	gap: 20px;
	align-items: flex-start;
	height: 100%;
}

.case-left-col {
	flex: 1; /* Takes remaining space */
	height: 100%;
	display: flex;
	flex-direction: column;
}

.case-meta {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eee;
}

.case-meta strong {
	color: var(--text-dark);
	font-size: 18px;
	display: block;
	margin-bottom: 8px;
}

.case-meta p {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.5;
}

.case-flow {
	margin-bottom: 0;
}

.case-flow-wrapper {
	display: flex;
	gap: 15px;
	height: 100%;
}

.flow-step {
	margin-bottom: 15px;
	padding-left: 0;
}

.flow-step strong {
	display: flex;
	font-size: 15px;
	margin-bottom: 4px;
	color: var(--text-dark);
	align-items: center;
	gap: 8px;
}

.flow-step .icon-box {
	color: var(--text-dark);
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px; /* Larger icon size */
	margin-right: 5px;
}

.flow-step p {
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 0;
	color: #555;
	padding-left: 32px; /* Indent text to align under title (ignoring icon) */
}

.case-image {
	flex: 0 0 38%; /* Slightly smaller image column to give text more room */
	max-width: 38%;
	display: flex;
	align-items: center; /* Center image vertically */
	justify-content: center;
}

.case-image img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;
}

/* Responsive: Stack EVERYTHING on mobile/tablet */
@media (max-width: 1024px) {
	.cases-grid {
		flex-direction: column; /* Stack cards vertically on smaller screens */
	}
	.case-item {
		min-width: 0;
	}
}

@media (max-width: 768px) {
	.case-content-wrapper {
		flex-direction: column; /* Stack Text and Image vertically inside card */
	}
	.case-image {
		max-width: 100%;
		margin-top: 20px;
	}

	/* Case Flow Wrapper Responsive */
	.case-flow-wrapper {
		flex-direction: column;
		gap: 10px;
	}

	.flow-step {
		margin-bottom: 12px;
	}

	.flow-step p {
		padding-left: 38px;
		font-size: 12px;
	}
}

/* =========================================
   Effects Section
   ========================================= */
.effects-section {
	background: var(--primary-blue);
	padding: 40px 0;
}

.effects-grid {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.effect-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 250px;
	max-width: 400px;
}

.effect-figure {
	font-size: 100px;
	font-weight: 800;
	line-height: 1;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.effect-figure .percent {
	font-size: 40px;
}

.effect-title {
	font-size: 22px;
	font-weight: 700;
	background: #fff;
	color: var(--text-dark);
	padding: 8px 30px;
	border-radius: 30px;
	display: inline-block;
}

/* =========================================
   Voices Section
   ========================================= */
.voices-section {
	background-color: #fff;
}

.voices-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.voice-item {
	text-align: left;
}

.voice-image {
	margin-bottom: 20px;
}

.voice-image img {
	border-radius: 4px;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	max-width: 100%;
}

.voice-item:hover .voice-image img {
	transform: none;
}

.voice-text {
	border-radius: 4px;
	text-align: left;
	position: relative;
	font-size: 14px;
}

.voice-text:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 0 10px 10px 10px;
	border-style: solid;
	border-color: transparent transparent #f9f9f9 transparent;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-header {
	background-color: var(--primary-blue);
	padding: 40px 0;
}

.contact-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.contact-image {
	flex: 0 0 40%;
	text-align: center;
}

.contact-image img {
	max-width: 100%;
	width: 400px; /* Limit size */
}

.contact-header h2 {
	font-size: 36px;
	font-weight: 700;
}

.contact-support {
	font-weight: 700;
	color: var(--primary-blue);
	background: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	display: inline-block;
	margin-top: 20px;
	border: 1px solid #ddd;
}

.contact-section .contact-form-wrapper {
	background-color: #fff;
	padding: 60px 0 80px !important;
}

/* Styles ported from theme.css for LP Consistency */
.bg-blue-light {
	background-color: rgba(38, 157, 243, 0.05);
}

.hight-light {
	color: #269df3;
}

.contact-info-section {
	padding-top: 62px;
	padding-bottom: 60px;
}

.contact-info-section h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

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

.section-title .hight-light {
	font-size: 20px;
	margin-bottom: 12px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.contact-info-section {
		padding-top: 68px;
		padding-bottom: 80px;
	}
}

/* Footer (Sync with Anyjob Page - Dark Footer) */
.footer-lp {
	background: #606060;
	padding: 30px 0;
	border-top: 1px solid #eee;
	color: #fff;
}
.footer-lp a {
	color: #fff;
	text-decoration: none;
}
.footer-lp .mb-3 {
	margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}
	.hero-title {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.effect-figure {
		font-size: 60px;
	}
	.effect-figure .percent {
		font-size: 30px;
	}
	.case-item {
		margin-bottom: 30px;
	}
	.section-heading {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.hero-content,
	.hero-image,
	.step-col-side,
	.step-col-center {
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
	}

	.hero-image {
		justify-content: center;
	}

	.hero-content {
		padding-right: 0;
		margin-bottom: 30px;
	}
	.hero-section {
		padding: 60px 0 40px;
		text-align: center;
	}

	.text-right,
	.text-left {
		text-align: center !important;
	}

	.step-1-layout {
		flex-direction: column;
	}
	.pool-item:after,
	.pool-item:before {
		display: none;
	}

	.contact-header-content {
		flex-direction: column;
		text-align: center;
	}
	.contact-image {
		display: none;
	}

	.step-content {
		flex-direction: column;
	}
	.step-image {
		order: -1;
	}

	/* About Anyjob Responsive */
	.about-anyjob-wrapper {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
	}

	.about-grid {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.about-content {
		min-width: 100%;
		padding: 25px 20px;
	}

	.about-graphic {
		max-width: 100%;
		width: 100%;
		margin-top: 20px;
	}

	.about-lead {
		font-size: 16px;
		margin-bottom: 30px;
		text-align: center;
	}
}
