/* ===== LP スタイルシート ===== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background: #ffffff;
}

/* ===== コンテナ ===== */
.lp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== ヘッダー ===== */
.lp-header {
	background: #f8f9fa;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lp-header .lp-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lp-header-logo {
	font-size: 24px;
	font-weight: bold;
	color: #0073aa;
	text-decoration: none;
}

.lp-header-btn {
	background: #0073aa;
	color: #ffffff;
	padding: 10px 30px;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s;
}

.lp-header-btn:hover {
	background: #005a87;
}

/* ===== ファーストビュー ===== */
.lp-fv {
	padding: 80px 0;
	text-align: center;
	background-size: cover;
	background-position: center;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-fv-content {
	animation: fadeInUp 0.8s ease-in-out;
}

.lp-fv-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
	color: #000;
}

.lp-fv-title-img {
	max-width: 600px;
	margin-bottom: 30px;
	height: auto;
}

.lp-fv-subtitle {
	font-size: 18px;
	margin-bottom: 40px;
	color: #666;
}

/* ===== ボタン ===== */
.lp-btn {
	display: inline-block;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 16px;
}

.lp-btn-primary {
	background: #0073aa;
	color: #ffffff;
}

.lp-btn-primary:hover {
	background: #005a87;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.lp-btn-secondary {
	background: #28a745;
	color: #ffffff;
}

.lp-btn-secondary:hover {
	background: #218838;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.lp-btn-large {
	padding: 20px 60px;
	font-size: 18px;
}

/* ===== リード（期間限定） ===== */
.lp-lead {
	padding: 40px 0;
	text-align: center;
	color: #ffffff;
}

.lp-lead-content {
	animation: slideIn 0.8s ease-in-out;
}

.lp-lead-title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 15px;
}

.lp-lead-text {
	font-size: 18px;
	margin-bottom: 25px;
	line-height: 1.8;
}

/* ===== セクション ===== */
.lp-section {
	padding: 80px 0;
}

.lp-section-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
	color: #000;
}

.lp-section-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.lp-section-text_image .lp-section-text {
	order: -1;
}

.lp-section-text_only .lp-section-text {
	grid-column: 1 / -1;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.lp-section-subtitle {
	font-size: 14px;
	color: #0073aa;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lp-section-body {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
	color: #555;
}

.lp-section-img img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ===== FAQ ===== */
.lp-faq {
	padding: 80px 0;
	background: #f8f9fa;
}

.lp-faq-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

.lp-faq-items {
	max-width: 800px;
	margin: 0 auto;
}

.lp-faq-item {
	background: #ffffff;
	padding: 30px;
	margin-bottom: 20px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lp-faq-q {
	font-size: 18px;
	font-weight: 600;
	color: #0073aa;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid #0073aa;
}

.lp-faq-a {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

/* ===== レビュー ===== */
.lp-reviews {
	padding: 80px 0;
}

.lp-reviews-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

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

.lp-review-item {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
}

.lp-review-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #000;
}

.lp-review-stars {
	font-size: 20px;
	color: #ffc107;
	margin-bottom: 15px;
}

.lp-star {
	margin: 0 2px;
}

.lp-review-text {
	font-size: 14px;
	line-height: 1.8;
	color: #666;
	font-style: italic;
}

/* ===== 最終CTA ===== */
.lp-footer-cta {
	padding: 80px 0;
	text-align: center;
	color: #ffffff;
}

.lp-footer-cta-title {
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 15px;
}

.lp-footer-cta-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.9;
}

/* ===== フッター ===== */
.lp-footer {
	background: #333;
	color: #ffffff;
	padding: 40px 0 20px;
	text-align: center;
}

.lp-footer-links {
	margin-bottom: 20px;
}

.lp-footer-links a {
	color: #ffffff;
	text-decoration: none;
	margin: 0 15px;
	font-size: 14px;
}

.lp-footer-links a:hover {
	text-decoration: underline;
}

.lp-footer-copy {
	font-size: 12px;
	opacity: 0.8;
}

/* ===== フローティングボタン ===== */
.lp-floating {
	position: fixed;
	z-index: 999;
	bottom: 30px;
}

.lp-floating-bottom-right {
	right: 30px;
}

.lp-floating-bottom-left {
	left: 30px;
}

.lp-floating-btn {
	display: block;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #0073aa, #005a87);
	color: #ffffff;
	border-radius: 50%;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
	transition: all 0.3s ease;
	font-size: 14px;
	line-height: 1.3;
}

.lp-floating-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 115, 170, 0.6);
}

/* ===== アニメーション ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
	.lp-fv-title {
		font-size: 32px;
	}

	.lp-section-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.lp-section-text_image .lp-section-text {
		order: 0;
	}

	.lp-reviews-items {
		grid-template-columns: 1fr;
	}

	.lp-floating {
		bottom: 20px;
	}

	.lp-floating-bottom-right {
		right: 20px;
	}

	.lp-floating-bottom-left {
		left: 20px;
	}

	.lp-floating-btn {
		width: 70px;
		height: 70px;
		font-size: 12px;
	}

	.lp-header .lp-container {
		flex-direction: column;
		gap: 15px;
	}

	.lp-faq-item,
	.lp-section-body {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.lp-container {
		padding: 0 15px;
	}

	.lp-fv-title {
		font-size: 24px;
	}

	.lp-section-title,
	.lp-faq-title,
	.lp-reviews-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.lp-btn {
		padding: 12px 30px;
		font-size: 14px;
	}

	.lp-lead-title {
		font-size: 20px;
	}

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

/* ===== 埋め込みモード ===== */
.lpfeed-embedded {
	width: 100%;
}

.lpfeed-embedded .lp-section,
.lpfeed-embedded .lp-faq,
.lpfeed-embedded .lp-reviews,
.lpfeed-embedded .lp-footer-cta {
	padding: 40px 0;
}

.lpfeed-embedded .lp-header {
	display: none;
}
