@charset "UTF-8";

/* LP全体（ボウ（棒）デザイン） */

/* CSS変数定義 */
:root {
	--lego-red: #d01012;
	--lego-blue: #0055bf;
	--lego-yellow: #ffc107;
	--lego-green: #00a550;
	--lego-orange: #ff6700;
	--lego-purple: #9b59d0;
	--background: #fef9e7;
	--background-white: #ffffff;
	--text-dark: #2c3e50;
	--text-gray: #666;
	--border: #f39c12;
	--shadow-block: 0 6px 0 rgba(0, 0, 0, 0.2);
	--shadow-hover: 0 4px 0 rgba(0, 0, 0, 0.2);
	--shadow-active: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.lp-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

/* ヒーローセクション */
.hero-section {
	text-align: center;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
}

/* ターミナル風ボックス → カラフルボックス */
.terminal-box {
	max-width: 600px;
	margin: 0 auto 40px;
	background: var(--background-white);
	border: 4px solid var(--lego-blue);
	border-radius: 0;
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}

/* ボックス上部の棒シンボル */
.terminal-box::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 20px;
	width: 4px;
	height: 20px;
	background: var(--lego-blue);
	border-radius: 2px;
	box-shadow:
		15px 0 0 var(--lego-blue),
		30px 0 0 var(--lego-blue),
		45px 0 0 var(--lego-blue),
		60px 0 0 var(--lego-blue),
		75px 0 0 var(--lego-blue),
		90px 0 0 var(--lego-blue);
}

.terminal-header {
	background: var(--lego-blue);
	padding: 15px;
	border-bottom: 3px solid #003d8f;
	display: flex;
	gap: 8px;
	align-items: center;
}

/* 丸いドット → 棒シンボル */
.terminal-dot {
	width: 3px;
	height: 14px;
	border-radius: 1px;
	background: #ffffff;
	animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}

.terminal-body {
	padding: 25px;
	text-align: left;
	font-family: 'Roboto', sans-serif;
	background: #fff9e6;
}

.terminal-line {
	margin: 10px 0;
	color: var(--text-dark);
	font-size: 14px;
	min-height: 20px;
	display: block;
	font-weight: 500;
}

.terminal-line.success {
	color: var(--lego-green);
	text-shadow: none;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.prompt {
	color: var(--lego-red);
	margin-right: 10px;
	text-shadow: none;
	display: inline-block;
	width: 15px;
	font-weight: 700;
}

.typing-text {
	display: inline-block;
}

/* ヒーロータイトル */
.hero-title {
	font-size: 4rem;
	font-weight: 800;
	color: var(--lego-red);
	text-shadow: none;
	margin: 30px 0;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* グリッチ効果を削除 */
.glitch::before,
.glitch::after {
	display: none;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--text-dark);
	margin-bottom: 15px;
	text-shadow: none;
	font-weight: 600;
}

.hero-note {
	font-size: 0.75rem;
	color: var(--text-gray);
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
}

/* CTAボタン - 棒ブロック風 */
.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-hacker {
	padding: 15px 40px;
	font-size: 1.1rem;
	border: none;
	border-bottom: 4px solid #007a3d;
	background: var(--lego-green);
	color: #ffffff;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	transition: all 0.1s ease;
	position: relative;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ボタンの棒シンボル */
.btn-hacker::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 16px;
	background: var(--lego-green);
	border-radius: 1px;
	box-shadow: -10px 0 0 var(--lego-green),
				10px 0 0 var(--lego-green);
}

.btn-hacker:hover {
	transform: translateY(2px);
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
	border-bottom-width: 2px;
}

.btn-hacker:active {
	transform: translateY(4px);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
	border-bottom-width: 0px;
}

.btn-hacker:hover::before {
	animation: bounce 0.5s ease infinite;
}

.btn-hacker.btn-primary {
	border-bottom-width: 4px;
}

.btn-hacker.btn-secondary {
	background: var(--lego-yellow);
	border-bottom: 4px solid #cc9a06;
	color: var(--text-dark);
}

.btn-hacker.btn-secondary::before {
	background: var(--lego-yellow);
	box-shadow: -10px 0 0 var(--lego-yellow),
				10px 0 0 var(--lego-yellow);
}

.btn-hacker.btn-secondary:hover {
	background: var(--lego-orange);
	border-bottom-color: #cc5200;
	color: #ffffff;
}

.btn-hacker.btn-secondary:hover::before {
	background: var(--lego-orange);
	box-shadow: -10px 0 0 var(--lego-orange),
				10px 0 0 var(--lego-orange);
}

.btn-hacker.btn-large {
	padding: 20px 60px;
	font-size: 1.3rem;
}

/* セキュリティアラート - 棒ブロック風 */
.security-alert {
	padding: 40px 20px;
	background: var(--background);
	border-top: 4px solid var(--lego-purple);
	border-bottom: 4px solid var(--lego-purple);
}

.alert-box {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 30px;
	background: var(--background-white);
	border: 4px solid var(--lego-purple);
	border-radius: 0;
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}

/* アラートボックスの棒シンボル */
.alert-box::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 30px;
	width: 4px;
	height: 20px;
	background: var(--lego-purple);
	border-radius: 2px;
	box-shadow:
		20px 0 0 var(--lego-purple),
		40px 0 0 var(--lego-purple),
		60px 0 0 var(--lego-purple),
		80px 0 0 var(--lego-purple);
}

.alert-box i {
	font-size: 4rem;
	color: var(--lego-purple);
	text-shadow: none;
	animation: shield-bounce 2s infinite;
}

@keyframes shield-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.alert-content h3 {
	font-size: 1.5rem;
	margin: 0 0 10px 0;
	color: var(--lego-purple);
	text-shadow: none;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.alert-content p {
	margin: 0;
	font-size: 1rem;
	color: var(--text-dark);
	font-weight: 500;
}

/* 特徴セクション */
.features-section {
	padding: 80px 20px;
	background: var(--background-white);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--lego-red);
	margin-bottom: 60px;
	text-shadow: none;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
}

/* 見出しの下に棒シンボル */
.section-title::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 16px;
	background: var(--lego-red);
	border-radius: 1px;
	box-shadow:
		-24px 0 0 var(--lego-red),
		-12px 0 0 var(--lego-red),
		12px 0 0 var(--lego-red),
		24px 0 0 var(--lego-red);
}

.bracket {
	color: var(--lego-yellow);
	text-shadow: none;
	font-weight: 800;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	background: var(--background-white);
	border: 4px solid var(--lego-blue);
	border-radius: 0;
	padding: 30px;
	text-align: center;
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
	position: relative;
	overflow: visible;
}

/* カードの棒シンボル */
.feature-card::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 20px;
	width: 4px;
	height: 20px;
	background: var(--lego-blue);
	border-radius: 2px;
	box-shadow:
		15px 0 0 var(--lego-blue),
		30px 0 0 var(--lego-blue),
		45px 0 0 var(--lego-blue);
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.feature-icon {
	font-size: 3rem;
	color: var(--lego-blue);
	margin-bottom: 20px;
	text-shadow: none;
}

.feature-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--text-dark);
	text-shadow: none;
	font-weight: 700;
}

.feature-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-dark);
	opacity: 1;
	font-weight: 400;
}

.feature-tag {
	display: inline-block;
	margin-top: 15px;
	padding: 8px 20px;
	background: var(--lego-green);
	border: none;
	border-bottom: 3px solid #007a3d;
	border-radius: 0;
	font-size: 0.8rem;
	color: #ffffff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

/* 技術仕様 */
.tech-specs {
	padding: 60px 20px;
	background: var(--background);
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.spec-item {
	background: var(--background-white);
	border: 3px solid var(--lego-purple);
	padding: 25px;
	text-align: center;
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
	border-radius: 0;
}

.spec-item:hover {
	box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
}

.spec-label {
	font-size: 0.9rem;
	color: var(--lego-purple);
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.spec-value {
	font-size: 1.3rem;
	color: var(--text-dark);
	font-weight: 700;
	text-shadow: none;
}

/* プランセクション */
.pricing-section {
	padding: 80px 20px;
	background: var(--background-white);
}

.pricing-table {
	max-width: 1200px;
	margin: 0 auto 40px;
	overflow: visible !important;
}

.table-hacker {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--background-white);
	border: 3px solid var(--lego-blue);
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	overflow: visible !important;
}

.table-hacker th,
.table-hacker td {
	padding: 15px;
	text-align: center;
	border: 2px solid var(--border);
	color: var(--text-dark);
	font-weight: 500;
}

.table-hacker thead th {
	background: var(--lego-blue);
	font-weight: 700;
	font-size: 1.1rem;
	text-shadow: none;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.table-hacker .feature-name {
	text-align: left;
	font-weight: 700;
}

.table-hacker .highlight-plan {
	background: #fff9e6;
	border-left: 3px solid var(--lego-yellow);
	border-right: 3px solid var(--lego-yellow);
	box-shadow: inset 0 0 10px rgba(255, 193, 7, 0.2);
}

.table-hacker thead .highlight-plan {
	background: var(--lego-yellow);
	text-shadow: none;
	font-size: 1.2rem;
	color: var(--text-dark);
}

.table-hacker tbody tr {
	transition: all 0.2s ease;
	position: relative;
}

.table-hacker tbody tr:hover {
	background: #fff9e6 !important;
	transform: scale(1.01);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 10;
	position: relative;
}

.pricing-note {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 20px 30px;
	background: var(--background);
	border: 3px solid var(--lego-green);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.pricing-note i {
	font-size: 1.5rem;
	color: var(--lego-green);
}

.pricing-note p {
	margin: 0;
	color: var(--text-dark);
	font-weight: 600;
}

/* CTAセクション */
.cta-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #fef9e7 0%, #fef5e7 100%);
	border-top: 4px solid var(--lego-red);
}

.cta-box {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 60px 40px;
	background: var(--background-white);
	border: 4px solid var(--lego-red);
	border-radius: 0;
	box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}

/* CTAボックスの棒シンボル */
.cta-box::before {
	content: "";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 24px;
	background: var(--lego-red);
	border-radius: 2px;
	box-shadow:
		-30px 0 0 var(--lego-red),
		-15px 0 0 var(--lego-red),
		15px 0 0 var(--lego-red),
		30px 0 0 var(--lego-red);
}

.cta-box h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--lego-red);
	text-shadow: none;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-box p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	color: var(--text-dark);
	font-weight: 600;
}

.cta-subtext {
	margin-top: 20px;
	font-size: 0.9rem;
	color: var(--text-gray);
	font-weight: 500;
}

/* 楽しいアニメーション */
@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

/* レスポンシブ */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 10px;
	}

	.hero-note {
		font-size: 0.7rem;
		margin-bottom: 25px;
		padding: 0 10px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-hacker {
		width: 100%;
		max-width: 300px;
	}

	.alert-box {
		flex-direction: column;
		text-align: center;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.specs-grid {
		grid-template-columns: 1fr;
	}

	.pricing-table {
		font-size: 0.85rem;
	}

	.table-hacker th,
	.table-hacker td {
		padding: 8px;
	}

	.cta-box {
		padding: 40px 20px;
	}

	.cta-box h2 {
		font-size: 1.5rem;
	}
}
