/* ========================================
   サブスクラボ - Editorial Design
======================================== */

/* ========================================
   SWELL Theme Overrides - Full Width
   最優先で適用されるよう!importantを使用
======================================== */

/* HTML/Bodyレベルでオーバーフロー制御 */
html.home,
body.home {
	overflow-x: hidden !important;
}

/* メインコンテンツをフルワイドに - 全セレクター網羅 */
body.home .l-content,
body.home .l-content__main,
body.home .l-content__inner,
body.home .l-content__body,
body.home .l-mainContent,
body.home .l-mainContent__inner,
body.home .p-mainContent,
body.home .c-article,
body.home .c-article__body,
body.home .post_content,
body.home .c-postContent,
body.home .entry-content,
body.home main,
body.home #main_content,
body.home #content,
body.home .l-container,
body.home article,
body.home .swell-block-container,
body.home .alignwide,
body.home .alignfull,
body.home [class*="wp-block"],
body.home .l-content > .l-content__inner,
body.home .l-content > .l-content__main,
body.home .post_content.c-postContent {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	box-sizing: border-box !important;
}

/* SWELLのサイドバーを強制非表示 */
body.home .l-sidebar,
body.home #sidebar,
body.home aside.l-sidebar,
body.home .l-content__side,
body.home aside[class*="sidebar"],
body.home .widget-area {
	display: none !important;
	width: 0 !important;
	flex: 0 0 0 !important;
}

/* SWELLのコンテンツラッパーをフルワイドに */
body.home .l-content__main,
body.home .l-mainContent,
body.home .l-content__inner,
body.home .l-content__body {
	max-width: 100% !important;
	flex: 0 0 100% !important;
	width: 100% !important;
}

/* フロントページのラッパーをフルワイドに */
body.home main.front-page,
body.home .front-page {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	overflow-x: hidden !important;
	position: relative !important;
}

/* SWELLのパンくずリスト・タイトル・メタを非表示 */
body.home .c-breadcrumb,
body.home .p-breadcrumb,
body.home .c-pageTitle,
body.home .p-articleMetas,
body.home .c-article__header,
body.home .p-articleMeta {
	display: none !important;
}

/* SWELLのフッター前余白調整 */
body.home .l-content {
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}

/* 子要素の制約も解除 */
body.home .post_content > *,
body.home .c-postContent > *,
body.home .entry-content > *,
body.home article > * {
	max-width: 100% !important;
}

/* SWELLの内部コンテナ幅制限を解除 */
body.home .l-content .l-content__inner {
	max-width: none !important;
}

/* SWELLのLPテンプレート用スタイル適用 */
body.home.page-template-page-lp .l-content,
body.home.page-template-page-lp .l-content__main {
	max-width: 100% !important;
	width: 100% !important;
}

/* Flexレイアウトの修正 */
body.home .l-content__inner {
	display: block !important;
}

body.home .l-content__main {
	float: none !important;
}

/* ========================================
   Base Styles
======================================== */

:root {
	--black: #0d0d0d;
	--white: #fff;
	--gray: #8a8a8a;
	--light: #f5f5f3;
	--accent: #1a1a1a;
	--font-main: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	font-weight: 500;
	color: var(--black);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.front-page {
	position: relative;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	overflow-x: hidden !important;
}

/* 各セクションをフルワイドに */
.front-page > section {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* ========================================
   Hero - Full Impact
======================================== */
.hero {
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--black);
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

/* Animated gradient orbs */
.hero__bg::before,
.hero__bg::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.6;
	animation: float 20s ease-in-out infinite;
}

.hero__bg::before {
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	top: -200px;
	left: -100px;
	animation-delay: 0s;
}

.hero__bg::after {
	width: 500px;
	height: 500px;
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	bottom: -150px;
	right: -100px;
	animation-delay: -10s;
}

/* Additional floating orbs */
.hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
}

.hero__orb--1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: float2 25s ease-in-out infinite;
}

.hero__orb--2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	top: 20%;
	right: 20%;
	animation: float3 18s ease-in-out infinite;
}

.hero__orb--3 {
	width: 250px;
	height: 250px;
	background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
	bottom: 30%;
	left: 15%;
	animation: float 22s ease-in-out infinite reverse;
}

/* Grid overlay */
.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	animation: gridMove 30s linear infinite;
}

/* Noise texture overlay */
.hero__noise {
	position: absolute;
	inset: 0;
	opacity: 0.15;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(50px, -30px) scale(1.05);
	}
	50% {
		transform: translate(20px, 40px) scale(0.95);
	}
	75% {
		transform: translate(-30px, 20px) scale(1.02);
	}
}

@keyframes float2 {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
	}
	33% {
		transform: translate(-40%, -60%) scale(1.1);
	}
	66% {
		transform: translate(-60%, -40%) scale(0.9);
	}
}

@keyframes float3 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(-40px, 30px) rotate(180deg);
	}
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(60px, 60px);
	}
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.7) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 24px;
}

.hero__eyebrow {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--white);
	opacity: 0.7;
	margin-bottom: 24px;
	overflow: hidden;
}

.hero__eyebrow span {
	display: inline-block;
	transform: translateY(100%);
	animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero__title {
	font-family: var(--font-main);
	font-size: clamp(32px, 6vw, 64px);
	font-weight: 600;
	color: var(--white);
	line-height: 1.3;
	letter-spacing: 0.05em;
	overflow: hidden;
	position: relative;
}

.hero__title span {
	display: inline-block;
	transform: translateY(100%);
	animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards, glowPulse 4s ease-in-out 2s infinite;
}

@keyframes glowPulse {
	0%, 100% {
		text-shadow: 0 0 0 transparent;
	}
	50% {
		text-shadow: 0 0 40px rgba(255,255,255,0.3), 0 0 80px rgba(120,119,198,0.2);
	}
}

.hero__subtitle {
	font-size: 14px;
	color: var(--white);
	opacity: 0.6;
	margin-top: 32px;
	letter-spacing: 0.05em;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero__scroll {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--white);
	opacity: 0;
	animation: fadeIn 1s 1.2s forwards;
}

.hero__scroll-text {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.hero__scroll-line {
	width: 1px;
	height: 60px;
	background: var(--white);
	opacity: 0.4;
	position: relative;
	overflow: hidden;
}

.hero__scroll-line::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes slideUp {
	to { transform: translateY(0); }
}

@keyframes fadeUp {
	to { transform: translateY(0); opacity: 0.6; }
}

@keyframes fadeIn {
	to { opacity: 1; }
}

@keyframes scrollLine {
	0% { top: -100%; }
	50% { top: 100%; }
	100% { top: 100%; }
}

/* ========================================
   Categories - Editorial Grid
======================================== */
.categories {
	padding: 140px 48px;
	background: var(--white);
}

.categories__header {
	max-width: 600px;
	margin-bottom: 80px;
}

.categories__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 16px;
}

.categories__title {
	font-family: var(--font-main);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 400;
	line-height: 1.1;
}

.categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--black);
}

.categories__item {
	position: relative;
	aspect-ratio: 4/3;
	background: var(--light);
	overflow: hidden;
	cursor: pointer;
}

.categories__item-bg {
	position: absolute;
	inset: 0;
	background: var(--black);
	transform: translateY(101%);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.categories__item:hover .categories__item-bg {
	transform: translateY(0);
}

.categories__item-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
}

.categories__item-num {
	position: absolute;
	top: 24px;
	left: 32px;
	font-family: var(--font-main);
	font-size: 13px;
	color: var(--gray);
	transition: color 0.4s;
}

.categories__item:hover .categories__item-num {
	color: rgba(255,255,255,0.5);
}

.categories__item-name {
	font-family: var(--font-main);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 400;
	margin-bottom: 8px;
	transition: color 0.4s;
}

.categories__item:hover .categories__item-name {
	color: var(--white);
}

.categories__item-count {
	font-size: 12px;
	color: var(--gray);
	transition: color 0.4s;
}

.categories__item:hover .categories__item-count {
	color: rgba(255,255,255,0.6);
}

.categories__item-arrow {
	position: absolute;
	top: 24px;
	right: 32px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.categories__item:hover .categories__item-arrow {
	opacity: 1;
	transform: translateX(0);
	border-color: var(--white);
	color: var(--white);
}

.categories__item-arrow svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 900px) {
	.categories {
		padding: 80px 24px;
	}
	.categories__grid {
		grid-template-columns: 1fr;
	}
	.categories__item {
		aspect-ratio: 16/9;
	}
}

/* ========================================
   Featured - Grid Layout
======================================== */
.featured {
	padding: 0 48px 140px;
	background: var(--white);
}

.featured__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.featured__title {
	font-family: var(--font-main);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
}

.featured__link {
	font-size: 13px;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: gap 0.3s;
}

.featured__link:hover {
	gap: 20px;
}

.featured__link svg {
	width: 20px;
	height: 20px;
}

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

.featured__card {
	display: block;
	position: relative;
	overflow: hidden;
}

.featured__card-img {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.featured__card-img img,
.featured__card-img .dummy-img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured__card:hover .featured__card-img img,
.featured__card:hover .featured__card-img .dummy-img {
	transform: scale(1.05);
}

.featured__card-body {
	padding: 16px 0;
}

.featured__card-cat {
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--gray);
	margin-bottom: 8px;
	display: block;
}

.featured__card-title {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 900px) {
	.featured {
		padding: 0 24px 80px;
	}
	.featured__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.featured__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 32px;
	}
	.featured__card-body {
		padding: 12px 0;
	}
	.featured__card-cat {
		font-size: 10px;
		margin-bottom: 4px;
	}
	.featured__card-title {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.featured {
		padding: 0 20px 60px;
	}
	.featured__grid {
		gap: 16px;
	}
	.featured__card-img img,
	.featured__card-img .dummy-img {
		aspect-ratio: 3/2;
	}
	.featured__card-title {
		font-size: 13px;
		-webkit-line-clamp: 3;
	}
}

/* ========================================
   Comparison - Horizontal Scroll
======================================== */
.comparison {
	padding: 140px 0;
	background: var(--light);
	overflow: hidden;
}

.comparison__header {
	padding: 0 48px;
	margin-bottom: 60px;
}

.comparison__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 16px;
}

.comparison__title {
	font-family: var(--font-main);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 400;
}

.comparison__track {
	display: flex;
	gap: 24px;
	padding: 0 48px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.comparison__track::-webkit-scrollbar {
	display: none;
}

.comparison__card {
	flex: 0 0 400px;
	scroll-snap-align: start;
	background: var(--white);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s;
}

.comparison__card:hover {
	transform: translateY(-8px);
}

.comparison__card-visual {
	height: 200px;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.comparison__card-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 2px,
		rgba(255,255,255,0.03) 2px,
		rgba(255,255,255,0.03) 4px
	);
}

.comparison__vs {
	font-family: var(--font-main);
	font-size: 64px;
	font-weight: 400;
	color: var(--white);
	opacity: 0.8;
}

/* 比較カードのアイキャッチ画像 */
.comparison__card-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison__card:hover .comparison__card-visual img {
	transform: scale(1.05);
}

.comparison__card-body {
	padding: 28px;
}

.comparison__card-label {
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 12px;
}

.comparison__card-title {
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 8px;
}

.comparison__card-desc {
	font-size: 13px;
	color: var(--gray);
}

@media (max-width: 600px) {
	.comparison {
		padding: 80px 0;
	}
	.comparison__header {
		padding: 0 24px;
	}
	.comparison__track {
		padding: 0 24px;
	}
	.comparison__card {
		flex: 0 0 300px;
	}
}

/* ========================================
   Latest - Minimal List
======================================== */
.latest {
	padding: 140px 48px;
	background: var(--white);
}

.latest__inner {
	max-width: 900px;
	margin: 0 auto;
}

.latest__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.latest__title {
	font-family: var(--font-main);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 400;
}

.latest__link {
	font-size: 13px;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: gap 0.3s;
}

.latest__link:hover {
	gap: 20px;
}

.latest__link svg {
	width: 20px;
	height: 20px;
}

.latest__list {
	display: flex;
	flex-direction: column;
}

.latest__item {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	transition: background 0.3s;
}

.latest__item:hover {
	background: var(--light);
	margin: 0 -24px;
	padding: 24px;
}

.latest__item-num {
	font-family: var(--font-main);
	font-size: 32px;
	color: var(--gray);
	opacity: 0.5;
}

.latest__item-body {
	min-width: 0;
}

.latest__item-cat {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 8px;
}

.latest__item-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.latest__item-date {
	font-size: 12px;
	color: var(--gray);
	white-space: nowrap;
}

@media (max-width: 600px) {
	.latest {
		padding: 80px 24px;
	}
	.latest__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.latest__item {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.latest__item-num {
		display: none;
	}
	.latest__item-title {
		white-space: normal;
	}
}

/* ========================================
   Intro Section
======================================== */
.intro {
	padding: 140px 48px;
	background: var(--light);
}

.intro__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.intro__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--gray);
	margin-bottom: 16px;
}

.intro__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 32px;
}

.intro__text {
	font-size: 14px;
	line-height: 2.2;
	color: var(--gray);
}

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

.intro__stat {
	text-align: center;
	padding: 40px 20px;
	background: var(--white);
	border-radius: 4px;
}

.intro__stat-num {
	display: block;
	font-size: clamp(36px, 5vw, 48px);
	font-weight: 600;
	line-height: 1;
	margin-bottom: 12px;
}

.intro__stat-num small {
	font-size: 0.6em;
}

.intro__stat-label {
	font-size: 12px;
	color: var(--gray);
}

@media (max-width: 900px) {
	.intro {
		padding: 80px 24px;
	}
	.intro__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.intro__title {
		font-size: clamp(24px, 6vw, 32px);
	}
	.intro__title br {
		display: none;
	}
	.intro__text {
		font-size: 13px;
		line-height: 2;
	}
	.intro__text br {
		display: none;
	}
	.intro__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	.intro__stat {
		padding: 24px 12px;
	}
	.intro__stat-num {
		font-size: clamp(24px, 6vw, 32px);
	}
	.intro__stat-label {
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.intro {
		padding: 60px 20px;
	}
	.intro__inner {
		gap: 40px;
	}
	.intro__label {
		font-size: 10px;
	}
	.intro__title {
		font-size: 22px;
		margin-bottom: 24px;
	}
	.intro__text {
		font-size: 13px;
		line-height: 1.9;
	}
	.intro__stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.intro__stat {
		padding: 20px 16px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		text-align: left;
	}
	.intro__stat-num {
		font-size: 28px;
		margin-bottom: 0;
		order: 2;
	}
	.intro__stat-label {
		font-size: 13px;
		order: 1;
	}
}

/* ========================================
   Ranking Section
======================================== */
.ranking {
	padding: 140px 48px;
	background: var(--white);
}

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

.ranking__header {
	margin-bottom: 60px;
}

.ranking__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--gray);
	margin-bottom: 16px;
}

.ranking__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
}

.ranking__grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ranking__card {
	display: grid;
	grid-template-columns: 80px 1fr 48px;
	gap: 24px;
	align-items: center;
	padding: 32px;
	background: var(--light);
	border-radius: 4px;
	transition: all 0.3s;
}

.ranking__card:hover {
	background: var(--black);
	color: var(--white);
}

.ranking__card-rank {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	opacity: 0.3;
}

.ranking__card:hover .ranking__card-rank {
	opacity: 0.5;
}

.ranking__card-genre {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--gray);
	margin-bottom: 8px;
}

.ranking__card:hover .ranking__card-genre {
	color: rgba(255,255,255,0.5);
}

.ranking__card-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}

.ranking__card-desc {
	font-size: 13px;
	color: var(--gray);
}

.ranking__card:hover .ranking__card-desc {
	color: rgba(255,255,255,0.6);
}

.ranking__card-arrow {
	width: 48px;
	height: 48px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.ranking__card:hover .ranking__card-arrow {
	border-color: rgba(255,255,255,0.3);
}

.ranking__card-arrow svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 600px) {
	.ranking {
		padding: 80px 24px;
	}
	.ranking__card {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 24px;
	}
	.ranking__card-rank {
		font-size: 32px;
	}
	.ranking__card-arrow {
		display: none;
	}
}

/* ========================================
   Guide Section
======================================== */
.guide {
	padding: 140px 48px;
	background: var(--black);
	color: var(--white);
}

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

.guide__header {
	margin-bottom: 60px;
}

.guide__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.5);
	margin-bottom: 16px;
}

.guide__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
}

.guide__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.guide__item {
	padding: 32px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 4px;
	transition: all 0.3s;
}

.guide__item:hover {
	border-color: rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.03);
}

.guide__item-num {
	display: block;
	font-size: 48px;
	font-weight: 700;
	opacity: 0.2;
	margin-bottom: 24px;
}

.guide__item-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}

.guide__item-text {
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
	.guide {
		padding: 80px 24px;
	}
	.guide__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 600px) {
	.guide__grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   FAQ Section
======================================== */
.faq {
	padding: 140px 48px;
	background: var(--light);
}

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

.faq__header {
	text-align: center;
	margin-bottom: 60px;
}

.faq__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--gray);
	margin-bottom: 16px;
}

.faq__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__item {
	background: var(--white);
	border-radius: 4px;
	overflow: hidden;
}

.faq__question {
	width: 100%;
	padding: 24px 32px;
	font-size: 15px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
	border: none;
	text-align: left;
	transition: background 0.3s;
}

.faq__question:hover {
	background: rgba(0,0,0,0.02);
}

.faq__question span:first-child {
	flex: 1;
}

.faq__icon {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--gray);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.faq__icon::before {
	width: 16px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.faq__icon::after {
	width: 2px;
	height: 16px;
	transform: translate(-50%, -50%);
}

.faq__item.is-open .faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-open .faq__answer {
	grid-template-rows: 1fr;
}

.faq__answer-inner {
	overflow: hidden;
}

.faq__answer-inner p {
	padding: 0 32px 24px;
	font-size: 14px;
	line-height: 1.9;
	color: var(--gray);
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.faq__item.is-open .faq__answer-inner p {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 600px) {
	.faq {
		padding: 80px 24px;
	}
	.faq__question {
		padding: 20px 24px;
		font-size: 14px;
	}
	.faq__answer-inner p {
		padding: 0 24px 20px;
	}
}

/* ========================================
   Footer CTA
======================================== */
.cta {
	padding: 160px 48px;
	background: var(--black);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta__bg {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	background: repeating-linear-gradient(
		90deg,
		var(--white),
		var(--white) 1px,
		transparent 1px,
		transparent 100px
	);
}

.cta__content {
	position: relative;
	z-index: 1;
}

.cta__title {
	font-size: clamp(28px, 5vw, 48px);
	font-weight: 600;
	color: var(--white);
	line-height: 1.4;
	margin-bottom: 20px;
}

.cta__desc {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 40px;
}

.cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 20px 48px;
	border: 1px solid var(--white);
	color: var(--white);
	font-size: 14px;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__btn:hover {
	background: var(--white);
	color: var(--black);
	gap: 24px;
}

.cta__btn svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 600px) {
	.cta {
		padding: 100px 24px;
	}
}

/* ========================================
   Scroll Animations
======================================== */
.js-reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.js-reveal-stagger > * {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.js-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.js-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.js-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.js-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.js-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ========================================
   Cursor
======================================== */
@media (hover: hover) {
	.custom-cursor {
		width: 20px;
		height: 20px;
		border: 1px solid var(--black);
		border-radius: 50%;
		position: fixed;
		pointer-events: none;
		z-index: 9999;
		transition: transform 0.15s, opacity 0.15s;
		mix-blend-mode: difference;
	}

	.custom-cursor.is-active {
		transform: scale(2.5);
		background: var(--white);
		border: none;
	}
}

/* ========================================
   Utils
======================================== */
.sp-only { display: none; }
@media (max-width: 768px) {
	.sp-only { display: block; }
	.pc-only { display: none; }
}

/* ========================================
   Hero Mobile Optimization
======================================== */
@media (max-width: 768px) {
	.hero__bg::before,
	.hero__bg::after {
		filter: blur(60px);
	}
	.hero__bg::before {
		width: 300px;
		height: 300px;
	}
	.hero__bg::after {
		width: 250px;
		height: 250px;
	}
	.hero__orb--1 {
		width: 200px;
		height: 200px;
	}
	.hero__orb--2 {
		width: 150px;
		height: 150px;
	}
	.hero__orb--3 {
		width: 120px;
		height: 120px;
	}
}

/* ========================================
   Reduced Motion (Accessibility)
======================================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.hero__bg::before,
	.hero__bg::after,
	.hero__orb,
	.hero__grid {
		animation: none;
	}

	.hero__title span,
	.hero__eyebrow span,
	.hero__subtitle {
		animation: none;
		transform: none;
		opacity: 1;
	}

	.hero__scroll {
		animation: none;
		opacity: 1;
	}

	.js-reveal {
		opacity: 1;
		transform: none;
	}

	.js-reveal-stagger > * {
		opacity: 1;
		transform: none;
	}
}
