/* ==========================================================
   ASK Method 診断ファネル CSS
   ========================================================== */

/* 選択肢ラベル */
.option-label {
	cursor: pointer;
	transition: all 0.2s ease;
	border-width: 2px !important;
}
.option-label:hover {
	background-color: rgba(13, 110, 253, 0.1) !important;
	color: #0d6efd !important;
	border-color: #0d6efd !important;
	transform: translateX(4px);
}
.option-label.active,
.option-label:has(input:checked) {
	background-color: rgba(13, 110, 253, 0.1) !important;
	border-color: #0d6efd !important;
	color: #0d6efd !important;
}

/* ==========================================================
   Welcome ページ - Hero フルスクリーン
   ========================================================== */
.welcome-hero-full {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	opacity: 0.25;
	z-index: 0;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,52,96,0.6) 0%, rgba(26,26,46,0.85) 100%);
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 2rem 1rem;
}
.hero-eyecatch {
	color: rgba(255,255,255,0.8);
	font-size: 1rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}
.hero-title {
	color: #fff;
	font-size: clamp(2.2rem, 6vw, 3.8rem);
	font-weight: 900;
	margin-bottom: 0.75rem;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
	color: rgba(255,255,255,0.85);
	font-size: clamp(1rem, 2.5vw, 1.3rem);
	margin-bottom: 2rem;
}
.hero-visual {
	max-width: 700px;
	margin: 0 auto 2.5rem;
}
.hero-visual img {
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
	transition: transform 0.4s ease;
}
.hero-visual img:hover {
	transform: scale(1.02);
}

/* CTA ボタン (独自スタイル) */
.btn-diagnosis-start {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 18px 48px;
	border-radius: 60px;
	text-decoration: none;
	box-shadow: 0 8px 30px rgba(238, 90, 36, 0.4);
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
}
.btn-diagnosis-start:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 40px rgba(238, 90, 36, 0.55);
	color: #fff;
	text-decoration: none;
}
.btn-arrow {
	font-size: 1.5rem;
	transition: transform 0.3s;
}
.btn-diagnosis-start:hover .btn-arrow {
	transform: translateX(5px);
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 8px 30px rgba(238, 90, 36, 0.4); }
	50%      { box-shadow: 0 8px 40px rgba(238, 90, 36, 0.65); }
}
.cta-sub {
	color: rgba(255,255,255,0.6);
	font-size: 0.85rem;
	margin-top: 1rem;
}

/* ==========================================================
   信頼セクション
   ========================================================== */
.welcome-trust {
	background: #fff;
}
.trust-number {
	font-size: 3.5rem;
	font-weight: 900;
	color: #0d6efd;
	line-height: 1;
}
.trust-label {
	color: #555;
	font-size: 0.9rem;
	margin-top: 0.3rem;
}

/* ==========================================================
   5タイプ ティーザー
   ========================================================== */
.type-teaser {
	transition: transform 0.2s ease;
}
.type-teaser:hover {
	transform: translateY(-6px);
}
.type-teaser-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #e0e0e0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: border-color 0.2s;
}
.type-teaser:hover .type-teaser-img {
	border-color: #0d6efd;
}
.type-teaser-name {
	font-size: 0.8rem;
	font-weight: 600;
	color: #333;
	margin-top: 0.5rem;
}

/* ==========================================================
   悩みカード
   ========================================================== */
.pain-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 1.2rem;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	transition: box-shadow 0.2s;
}
.pain-card:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pain-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}
.pain-card p {
	margin: 0;
	font-size: 0.95rem;
	color: #333;
}

/* ==========================================================
   アニメーション
   ========================================================== */
.animate-fadeInUp {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.7s ease-out forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* 結果ページ フェードイン */
.result-hero {
	animation: fadeInUp 0.8s ease-out;
}
.result-char-img {
	animation: fadeInScale 1.0s ease-out 0.3s both;
}
@keyframes fadeInScale {
	from { opacity: 0; transform: scale(0.8); }
	to   { opacity: 1; transform: scale(1); }
}

/* プログレスバー */
.progress {
	border-radius: 10px;
	background-color: #e9ecef;
}
.progress-bar {
	border-radius: 10px;
	transition: width 0.4s ease;
}

/* ==========================================================
   モバイル調整
   ========================================================== */
@media (max-width: 768px) {
	.welcome-hero-full { min-height: 100svh; }
	.hero-title { font-size: 2rem; }
	.btn-diagnosis-start { font-size: 1.1rem; padding: 14px 32px; }
	.trust-number { font-size: 2.5rem; }
	.type-teaser-img { width: 60px; height: 60px; }
	.result-hero .display-4 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
	.hero-visual img { border-radius: 10px; }
	.hero-eyecatch { font-size: 0.85rem; }
}
