/*
Theme Name: Marketch
Theme URI:
Author: 合同会社えいおう
Author URI:
Description: Minimal starter theme for Marketch.
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marketch
*/

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

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	line-height: 1.75;
    margin: 0;
	color: #0F1419;
	overflow-x: hidden;
    padding-top: 100px;
}
img{
    display: block;
    width: 100%;
}

:root{
    --brand:#041c34;
    --brand-sub:#201a83;
    --button:#008a2a;
    --button-hover:#28a34c;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

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

.button-box {
	text-align: center;
}

.button-box a {
	background-color: var(--button);
	border: 1px solid var(--button);
	display: inline-block;
	text-decoration: none;
	color: #fff;
	padding: 15px 35px;
	border-radius: 50px;
	transition: all .3s;
}

.button-box a:hover {
	background: var(--button-hover);
	transform: translateY(-1px);
	box-shadow: 0 8px 25px 0 rgba(79, 70, 229, 0.25);
}

.align-right {
	text-align: right;
}

ruby {
	ruby-position: over;
	ruby-align: center;
}

rt {
	font-size: 0.5em;
	font-weight: normal;
	letter-spacing: normal;
}

.small-text {
	font-size: 75%;
}

.extra-small-text {
	font-size: 50%;
}

.image-back-full img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 1.2rem 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav > div,
.nav > ul,
.nav .menu,
.nav #menu-primary {
	display: flex !important;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.nav li {
	display: inline-block;
	margin: 0;
	padding: 0;
	position: relative;
}

.nav a:not(.cta-button) {
	display: inline-block;
	text-decoration: none;
	color: #334155;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 0;
	transition: all 0.3s ease;
	position: relative;
}

.nav a:not(.cta-button):hover {
	color: var(--brand);
}

.nav a:not(.cta-button)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--brand);
	transition: width 0.3s ease;
}

.nav a:not(.cta-button):hover::after {
	width: 100%;
}

.nav .current-menu-item > a:not(.cta-button),
.nav .current_page_item > a:not(.cta-button) {
	color: var(--brand);
	font-weight: 600;
}

.nav .current-menu-item > a:not(.cta-button)::after,
.nav .current_page_item > a:not(.cta-button)::after {
	width: 100%;
}

.nav .menu li {
	position: relative;
}

.nav .menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 1rem 0;
	min-width: 220px;
	z-index: 1000;
	margin-top: 0.5rem;
	list-style: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, display 0.3s allow-discrete;
	pointer-events: none;
}

.nav .menu li.active > .sub-menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.nav .menu .sub-menu li {
	display: block;
	margin: 0;
	padding: 0;
}

.nav .menu .sub-menu a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #334155;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.nav .menu .sub-menu a::after {
	display: none;
}

.nav .menu .sub-menu a:hover {
	background: #F8FAFC;
	color: var(--brand);
}

.nav .menu .menu-item-has-children > a {
	cursor: pointer;
	user-select: none;
}

.nav .menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 0.5rem;
	vertical-align: middle;
	position: static;
	background: none;
	transition: transform 0.3s ease;
}

.nav .menu .menu-item-has-children.active > a::after {
	transform: rotate(180deg);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
	outline: none;
}

.mobile-menu-toggle span {
	width: 30px;
	height: 2px;
	background: #334155;
	border-radius: 2px;
	transition: all 0.3s ease;
	display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: white;
	z-index: 999;
	overflow-y: auto;
	padding-top: calc(70px + 2rem);
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-bottom: 2rem;
	opacity: 0;
	transform: translateX(100%);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	visibility: hidden;
	-webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
	visibility: visible;
}

.mobile-nav .mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav .mobile-menu > li {
	border-bottom: 1px solid #F1F5F9;
}

.mobile-nav .mobile-menu > li:last-child {
	border-bottom: none;
}

.mobile-nav .mobile-menu a {
	display: block;
	padding: 1rem 0;
	color: #334155;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	transition: color 0.2s ease;
}

.mobile-nav .mobile-menu a:hover {
	color: var(--brand);
}

.mobile-nav .mobile-menu .menu-item-has-children {
	position: relative;
}

.mobile-nav .mobile-menu .menu-item-has-children > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-nav .mobile-menu .menu-item-has-children > a::after {
	content: '+';
	font-size: 1.5rem;
	color: #94A3B8;
	transition: transform 0.3s ease;
}

.mobile-nav .mobile-menu .menu-item-has-children.active > a::after {
	content: '−';
}

.mobile-nav .mobile-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #F8FAFC;
	border-radius: 8px;
	margin-top: 0.5rem;
}

.mobile-nav .mobile-menu .menu-item-has-children.active > .sub-menu {
	max-height: 500px;
	padding: 0.5rem 0;
}

.mobile-nav .mobile-menu .sub-menu li {
	border-bottom: none;
}

.mobile-nav .mobile-menu .sub-menu a {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	color: #64748B;
}

.mobile-nav .mobile-menu .sub-menu a:hover {
	color: var(--brand);
	background: white;
}

.mobile-nav .cta-button {
	margin-top: 2rem;
	text-align: center;
	width: 100%;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	max-width: 200px;
}

.cta-button {
	background: var(--button);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.15);
}

.cta-button:hover {
	background: var(--button-hover);
	transform: translateY(-1px);
	box-shadow: 0 8px 25px 0 rgba(79, 70, 229, 0.25);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, var(--brand) 100%);
	height: 100vh;
    min-height: 500px;
    max-height: 850px;;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./img/priscilla-du-preez.jpg') center/cover;
	opacity: 0.1;
}

.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	color: white;
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text h1 {
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
}

.hero-text p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: rgba(255, 255, 255, 1);
	color: var(--brand);
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 1rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	height: auto;
}

/* Section Common */
.section {
	padding: 120px 0;
}

.section-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #0F1419;
	letter-spacing: -0.02em;
	text-align: center;
}

.section-subtitle {
	font-size: 1.25rem;
	margin-bottom: 4rem;
	color: #64748B;
	text-align: center;
	font-weight: 300;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
}

/* About Section - NEW */
.about {
	background: white;
	padding: 120px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #0F1419;
	text-align: left;
}

.about-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #374151;
	margin-bottom: 2rem;
}

.about-highlights {
	background: #F8FAFC;
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid #E2E8F0;
}

.about-highlights h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #0F1419;
}

.highlight-list {
	list-style: none;
	padding: 0;
}

.highlight-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid #E2E8F0;
	font-size: 1rem;
	color: #374151;
	position: relative;
	padding-left: 2rem;
}

.highlight-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10B981;
	font-weight: bold;
}

.highlight-list li:last-child {
	border-bottom: none;
}

/* Problem & Solution Section - NEW */
.problem-solution {
	background: #F8FAFC;
	padding: 120px 0;
}

.problem-section,
.solution-section {
	margin-bottom: 4rem;
}

.problem-section h2,
.solution-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #0F1419;
	text-align: center;
}

.problem-grid,
.solution-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.problem-card,
.solution-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid #E2E8F0;
	transition: all 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.problem-card h3,
.solution-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.problem-card p,
.solution-card p {
	color: #64748B;
	line-height: 1.6;
}

.problem-card {
	border-left: 4px solid #EF4444;
    border-right:4px solid #EF4444
}

.solution-card {
	border-left: 4px solid #10B981;
    border-right: 4px solid #10B981;
}

/* How It Works */
.how-it-works {
	background: white;
	padding: 120px 0;
}

.process-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.process-intro p {
	font-size: 1.1rem;
	color: #374151;
	line-height: 1.8;
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1rem;
}

.step {
	background: #FAFBFC;
	padding: 3rem;
	border-radius: 24px;
	text-align: center;
	border: 1px solid #F1F5F9;
	transition: all 0.3s ease;
	position: relative;
}

.step:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
	border-color: #E2E8F0;
	background: white;
}

.step-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand)100%);
	color: white;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 1rem auto 2rem;
}

.step h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.step p {
	color: #64748B;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.step-details {
	font-size: 0.9rem;
	color: #6B7280;
	line-height: 1.5;
}

/* Target Audience Section - NEW */
.target-audience {
	background: #F8FAFC;
	padding: 120px 0;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.audience-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid #E2E8F0;
	transition: all 0.3s ease;
}

.audience-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.audience-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand) 100%);
	color: white;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.audience-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
    text-align: center;
}

.audience-card p {
	color: #64748B;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.audience-examples {
	font-size: 0.9rem;
	color: #6B7280;
}

.audience-examples strong {
	color: #374151;
}

/* Marketing Areas Section - NEW */
.marketing-areas {
	background: white;
	padding: 120px 0;
}

.areas-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.areas-intro p {
	font-size: 1.1rem;
	color: #374151;
	line-height: 1.8;
}

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

.area-card {
	background: #FAFBFC;
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid #F1F5F9;
	transition: all 0.3s ease;
	text-align: center;
}

.area-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	background: white;
}

.area-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #10B981 0%, #059669 100%);
	color: white;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin: 0 auto 1.5rem;
}

.area-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.area-card p {
	color: #64748B;
	line-height: 1.6;
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.area-examples {
	font-size: 0.85rem;
	color: #6B7280;
	background: rgba(79, 70, 229, 0.05);
	padding: 0.75rem;
	border-radius: 8px;
}

/* Marketers Section */
.marketers {
	background: #F8FAFC;
	padding: 120px 0;
}

.marketers-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.marketers-intro img,
.features-intro img {
	width: 100%;
	max-width: 800px;
	height: 400px;
    margin: 0 auto;
	object-fit: cover;
	border-radius: 24px;
	margin-bottom: 3rem;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.selection-process {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	margin-bottom: 4rem;
	border: 1px solid #E2E8F0;
}

.selection-process h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #0F1419;
	text-align: center;
}

.selection-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.selection-step {
	text-align: center;
	padding: 1.5rem;
	background: #F8FAFC;
	border-radius: 12px;
}

.selection-step-number {
	width: 30px;
	height: 30px;
	background: var(--brand);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-weight: 600;
	font-size: 0.9rem;
}

.selection-step h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #0F1419;
}

.selection-step p {
	font-size: 0.85rem;
	color: #64748B;
}

.marketers-grid {
	display: grid;
	grid-template-columns: 30% 30% 30%;
	gap: 2rem;
}

.marketer-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid #F1F5F9;
	transition: all 0.3s ease;
	text-align: center;
	display: block;
	text-decoration: none;
	color: inherit;
}

.marketer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-color: #E2E8F0;
}

.marketer-avatar {
	width: 245px;
	height: 170px;
	border-radius: 20px;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	border: 3px solid #F1F5F9;
    object-fit: cover;
}

.marketer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.marketer-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #0F1419;
}

.marketer-specialty {
	color: var(--brand);
	font-weight: 500;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.marketer-experience {
	color: #64748B;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.marketer-rate {
	color: #059669;
	font-size: 1rem;
	font-weight: 600;
}

.marketer-english {
	font-size: 0.75rem;
	color: #94A3B8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
	font-weight: 500;
}

.marketer-tactics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 1rem;
}

.marketer-tactics .tactic-tag {
	display: inline-block;
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	color: #1E40AF;
	padding: 0.35rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 500;
	border: 1px solid #BFDBFE;
}

/* Detailed Content Sections */
.content-sections {
	background: white;
	padding: 120px 0;
}

.content-intro {
	text-align: center;
	margin-bottom: 6rem;
}

.content-intro h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #0F1419;
}

.content-intro p {
	font-size: 1.1rem;
	color: #374151;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.content-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.tab-button {
	padding: 1rem 2rem;
	border: 2px solid #E2E8F0;
	background: white;
	color: #64748B;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.tab-button.active {
	border-color: var(--brand);
	background: var(--brand);
	color: white;
}

.tab-button:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.tab-button.active:hover {
	color: white;
}

.content-grid {
	display: grid;
    grid-template-columns: 30% 30% 30%;
	/* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
	gap: 2rem;
}

.content-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #F1F5F9;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.content-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
	border-color: #E2E8F0;
	text-decoration: none;
	color: inherit;
}

.content-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.content-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.content-card:hover .content-image img {
	transform: scale(1.05);
}

.content-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
}

.content-category.interview {
	background: rgba(139, 69, 19, 0.9);
}

.content-category.case {
	background: rgba(16, 185, 129, 0.9);
}

.content-category.profile {
	background: rgba(79, 70, 229, 0.9);
}

.content-body {
	padding: 2rem;
}

.content-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #0F1419;
	line-height: 1.3;
}

.content-excerpt {
	color: #64748B;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.content-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.9rem;
	color: #64748B;
}

.content-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.author-avatar {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	overflow: hidden;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-date {
	margin-left: auto;
}

/* Plans Section */
.plans {
	background: linear-gradient(135deg, #667eea 0%, var(--brand) 100%);
	color: white;
	position: relative;
	padding: 120px 0;
}

.plans::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./img/van-tay-media-Hh.jpg') center/cover;
	opacity: 0.1;
}

.plans .container {
	position: relative;
}

.plans .section-title,
.plans .section-subtitle {
	color: white;
}

.pricing-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.pricing-intro p {
	font-size: 1.1rem;
	opacity: 0.9;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.plan-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	padding: 3rem;
	text-align: center;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.plan-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.featured::before {
	content: '人気';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #4F46E5 0%, var(--brand)100%);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.85rem;
}

.plan-price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--brand-sub);
	margin-bottom: 0.5rem;
}

.plan-period {
	color: #64748B;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.plan-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.plan-description {
	color: #64748B;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.plan-features {
	text-align: left;
	margin-bottom: 2rem;
}

.plan-features ul {
	list-style: none;
	padding: 0;
}

.plan-features li {
	padding: 0.5rem 0;
	color: #374151;
	position: relative;
	padding-left: 1.5rem;
}

.plan-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10B981;
	font-weight: bold;
}

.page-lower .plans{
	background: none;
}
.page-lower .plans::before,
.page-lower .plans .section-title,
.page-lower .pricing-intro{
	display: none;
}
.page-lower .animate-in{
	border:1px solid #ccc ;
}

/* Features Section */
.features {
	background: #FAFBFC;
	padding: 120px 0;
}

.features-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.features-intro p {
	font-size: 1.1rem;
	color: #374151;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

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

.feature {
	background: white;
	padding: 3rem;
	border-radius: 24px;
	text-align: center;
	border: 1px solid #F1F5F9;
	transition: all 0.3s ease;
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-color: #E2E8F0;
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #10B981 0%, #059669 100%);
	color: white;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 2rem;
}

.feature h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.feature p {
	color: #64748B;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.feature-details {
	font-size: 0.9rem;
	color: #6B7280;
	line-height: 1.5;
}

/* Testimonials */
.testimonials {
	background: white;
	padding: 120px 0;
}

.testimonials-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.testimonials-intro p {
	font-size: 1.1rem;
	color: #374151;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.testimonial {
	background: #FAFBFC;
	padding: 3rem;
	border-radius: 24px;
	border: 1px solid #F1F5F9;
	transition: all 0.3s ease;
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	background: white;
}

.testimonial-quote {
	font-size: 1.1rem;
	color: #0F1419;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.testimonial-info h4 {
	font-weight: 600;
	color: #0F1419;
	margin-bottom: 0.25rem;
}

.testimonial-info p {
	color: #64748B;
	font-size: 0.9rem;
}

.testimonial-details {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #E2E8F0;
	font-size: 0.9rem;
	color: #6B7280;
	line-height: 1.5;
}

/* FAQ Section - NEW */
.faq {
	background: #F8FAFC;
	padding: 120px 0;
}

.faq-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.faq-intro p {
	font-size: 1.1rem;
	color: #374151;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 16px;
	border: 1px solid #E2E8F0;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: #0F1419;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: #F8FAFC;
}

.faq-icon {
	font-size: 1.2rem;
	color: var(--brand-sub);
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 2rem 1.5rem;
	color: #374151;
	line-height: 1.7;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-item.active .faq-icon {
	transform: rotate(0deg);
}

/* Final CTA */
.final-cta {
	background: linear-gradient(135deg, #0F1419 0%, #334155 100%);
	color: white;
	text-align: center;
	position: relative;
	padding: 120px 0;
}

.final-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./img/windows-12mi.jpg') center/cover;
	opacity: 0.1;
}

.final-cta .container {
	position: relative;
}

.final-cta h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.final-cta p {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	font-weight: 300;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
}

.final-cta .hero-buttons {
	justify-content: center;
}

/* Footer */
.footer {
	background: #0F1419;
	color: white;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.footer-section p {
	opacity: 0.8;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.75rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.sp-box{
	display: none;
}
.pc-box{
	display: block;
}

/* ==========================================
   Responsive Styles
   ========================================== */

/* Tablet Landscape & Small Desktop (1025px - 1199px) */
@media (max-width: 1199px) {
	.inner {
		padding: 0 2rem;
	}

	.hero-text h1 {
		font-size: 4rem;
	}

	.hero-text p {
		font-size: 1.15rem;
	}
}

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
	body {
		padding-top: 80px;
	}

	.inner {
		padding: 0 1.5rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: left;
		gap: 3rem;
		padding: 0 1.5rem;
	}

	.hero-text h1 {
		font-size: 3.5rem;
	}

	.hero-text p {
		font-size: 1.1rem;
	}

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

	.section {
		padding: 80px 0;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.content-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.marketers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.plans-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* Mobile & Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
	.sp-box{
		display: block;
	}
	.pc-box{
		display: none;
	}
	.sp-left{
		text-align: left;
	}
	body {
		padding-top: 70px;
		font-size: 15px;
	}

	.inner {
		padding: 0 1rem;
	}

	.header {
		padding: 0.8rem 0;
		z-index: 1000 !important;
		position: fixed;
	}

	.header .inner {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		max-width: 140px;
		z-index: 1001;
		flex-shrink: 0;
		order: 1;
	}

	.logo img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	.nav .menu {
		display: none !important;
	}

	.nav {
		gap: 0;
		display: none !important;
	}

	.nav .cta-button {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-between !important;
		margin-left: auto;
		flex-shrink: 0;
		order: 2;
		width: 30px;
		height: 22px;
		z-index: 1001 !important;
		position: relative;
		background: transparent;
		padding: 0;
		border: none;
	}

	.mobile-menu-toggle span {
		display: block !important;
		width: 100% !important;
		height: 2px !important;
		background: #334155 !important;
		border-radius: 2px;
		transition: all 0.3s ease !important;
	}

	.mobile-menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px) !important;
	}

	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0 !important;
	}

	.mobile-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px) !important;
	}

	.mobile-nav {
		display: block !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		z-index: 999 !important;
		border: none;
	}

	.mobile-nav.active {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateX(0) !important;
		pointer-events: auto !important;
		background: white !important;
	}

	.mobile-nav .cta-button {
		display: inline-block;
		width: auto;
		padding: 0.8rem 2rem;
	}

	.hero {
		padding: 3rem 0;
		min-height: 400px;
        min-height: 500px;
        height: 60vh;
    }

	.hero-content {
		padding: 0 1rem;
	}

	.hero-text h1 {
		font-size: 2.5rem;
		line-height: 1.2;
		margin-bottom: 1rem;
	}

	.hero-text p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.about,
	.problem-solution,
	.target-audience,
	.marketing-areas,
	.content-sections,
	.testimonials,
	.faq{
		padding: 80px 0;
	}

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

	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
		padding: 0.875rem 1.5rem;
	}

	.final-cta p{
		font-size: 1rem;
	}

	.section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.about-text h2,
	.problem-section h2,
	.solution-section h2 {
		font-size: 1.75rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.content-tabs {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
	}

	.content-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.marketers-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.plans-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

	.button-box a {
		padding: 12px 24px;
		font-size: 0.9rem;
	}
	.final-cta .container{
		padding: 0 10px;;
	}
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2rem;
	}

	.hero-text p {
		font-size: 0.95rem;
	}

	.section-title,
	.content-intro h2,
	.marketer-name {
		font-size: 1.75rem;
	}

	.about-text h2,
	.problem-section h2,
	.solution-section h2 {
		font-size: 1.5rem;
	}

	.section {
		padding: 40px 0;
	}

	.btn-primary,
	.btn-secondary {
		font-size: 0.9rem;
		padding: 0.75rem 1.25rem;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-in {
	animation: fadeInUp 0.6s ease-out;
}

/* ==========================================
   Single Post Page Styles
   ========================================== */

/* Single Post Header */
.single-post-header {
	background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
	padding: 2rem 0 3rem;
	margin-bottom: 0;
}

.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #64748B;
	margin-bottom: 1.5rem;
}

.breadcrumb a {
	color: #64748B;
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumb a:hover {
	color: var(--brand);
}

.breadcrumb .separator {
	color: #CBD5E1;
}

.breadcrumb .current {
	color: #1E293B;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 300px;
}

.post-categories {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.post-category {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	background: var(--brand);
	color: white;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
}

.post-category:hover {
	background: #3730A3;
	transform: translateY(-2px);
}

.post-title {
	font-size: 2.5rem;
	line-height: 1.3;
	color: #1E293B;
	margin: 0 0 1.5rem;
	font-weight: 700;
}

.post-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.post-author-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.post-author-info .author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}

.post-author-info .author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.author-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1E293B;
}

.post-date {
	font-size: 0.875rem;
	color: #64748B;
}

.post-actions {
	display: flex;
	gap: 0.75rem;
}

.share-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 6px;
	color: #475569;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.3s;
}

.share-button:hover {
	background: #F8FAFC;
	border-color: var(--brand);
	color: var(--brand);
}

/* Post Thumbnail */
.post-thumbnail {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 3rem;
	border-radius: 12px;
	overflow: hidden;
}

.post-thumbnail-image {
	width: 100%;
	height: auto;
	display: block;
}

/* Post Layout - Two Column */
.single-post-content {
	padding: 3rem 0;
}

.post-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	align-items: start;
}

.post-main {
	min-width: 0;
}

/* Table of Contents */
.table-of-contents {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.toc-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 1rem;
}

.toc-list,
.sidebar-toc-list {
	margin: 0;
	padding: 0;
}

.toc-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.toc-items li {
	margin: 0;
	padding: 0;
}

.toc-item-h2 {
	margin-bottom: 0.5rem;
}

.toc-item-h3 {
	margin-bottom: 0.5rem;
	padding-left: 1rem;
}

.toc-items a {
	display: block;
	padding: 0.5rem 0.75rem;
	color: #475569;
	text-decoration: none;
	font-size: 0.9375rem;
	border-radius: 4px;
	transition: all 0.2s;
	position: relative;
}

.toc-items a:hover {
	background: #E0E7FF;
	color: var(--brand);
}

.toc-items a.active {
	background: #E0E7FF;
	color: var(--brand);
	font-weight: 600;
}

.toc-items a.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 20px;
	background: var(--brand);
	border-radius: 2px;
}

/* Entry Content */
.entry-content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 3rem;
}

.entry-content h2 {
	font-size: 1.875rem;
	font-weight: 700;
	color: #1E293B;
	margin: 3rem 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 3px solid var(--brand);
}

.entry-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1E293B;
	margin: 2.5rem 0 1rem;
	padding-left: 0.75rem;
	border-left: 4px solid var(--brand);
}

.entry-content h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1E293B;
	margin: 2rem 0 1rem;
}

.entry-content p {
	margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.entry-content li {
	margin-bottom: 0.75rem;
}

.entry-content a {
	color: var(--brand);
	text-decoration: underline;
	transition: opacity 0.2s;
}

.entry-content a:hover {
	opacity: 0.7;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 2rem 0;
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #F8FAFC;
	border-left: 4px solid var(--brand);
	font-style: italic;
	color: #475569;
}

.entry-content code {
	padding: 0.2rem 0.4rem;
	background: #F1F5F9;
	border: 1px solid #E2E8F0;
	border-radius: 4px;
	font-size: 0.875em;
	font-family: 'Courier New', monospace;
}

.entry-content pre {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #1E293B;
	color: #F8FAFC;
	border-radius: 8px;
	overflow-x: auto;
}

.entry-content pre code {
	padding: 0;
	background: none;
	border: none;
	color: inherit;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

.entry-content th,
.entry-content td {
	padding: 0.75rem;
	border: 1px solid #E2E8F0;
	text-align: left;
}

.entry-content th {
	background: #F8FAFC;
	font-weight: 600;
}

/* Post Tags */
.post-tags {
	margin-bottom: 3rem;
	padding: 2rem;
	background: #F8FAFC;
	border-radius: 8px;
}

.tags-title {
	font-size: 1rem;
	font-weight: 600;
	color: #1E293B;
	margin: 0 0 1rem;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tag {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 20px;
	color: #475569;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.3s;
}

.tag:hover {
	background: var(--brand);
	color: white;
	border-color: var(--brand);
	transform: translateY(-2px);
}

/* Author Box */
.author-box {
	display: flex;
	gap: 1.5rem;
	padding: 2rem;
	background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
	border: 1px solid #E0E7FF;
	border-radius: 12px;
	margin-bottom: 3rem;
}

.author-box-avatar {
	flex-shrink: 0;
}

.author-box-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid white;
}

.author-box-info {
	flex: 1;
}

.author-box-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748B;
	margin: 0 0 0.5rem;
}

.author-box-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1E293B;
	margin-bottom: 0.75rem;
}

.author-box-bio {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 1rem;
}

.author-box-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--brand);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: gap 0.3s;
}

.author-box-link:hover {
	gap: 0.75rem;
}

/* Post Navigation */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.post-nav-prev,
.post-nav-next {
	min-width: 0;
}

.post-nav-link {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s;
	height: 100%;
}

.post-nav-link:hover {
	border-color: var(--brand);
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
	transform: translateY(-2px);
}

.post-nav-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #64748B;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.post-nav-title {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.post-nav-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
}

.post-nav-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-nav-text {
	flex: 1;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1E293B;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Related Posts */
.related-posts {
	margin-bottom: 3rem;
}

.related-posts-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 2rem;
	text-align: center;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.related-post-card {
	display: block;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s;
}

.related-post-card:hover {
	border-color: var(--brand);
	box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
	transform: translateY(-4px);
}

.related-post-thumbnail {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.related-post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.related-post-card:hover .related-post-thumbnail img {
	transform: scale(1.05);
}

.related-post-content {
	padding: 1.25rem;
}

.related-post-title {
	font-size: 1rem;
	font-weight: 600;
	color: #1E293B;
	line-height: 1.5;
	margin: 0 0 0.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.related-post-date {
	font-size: 0.875rem;
	color: #64748B;
}

/* Sidebar */
.post-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
}

.sidebar-widget {
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.widget-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #E2E8F0;
}

/* Profile Widget */
.profile-widget {
	text-align: center;
	background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.profile-avatar {
	margin: 0 auto 1rem;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid white;
}

.profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 0.5rem;
}

.profile-bio {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #475569;
	margin: 0 0 1rem;
}

.profile-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--brand);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: gap 0.3s;
}

.profile-link:hover {
	gap: 0.75rem;
}

/* TOC Widget */
.toc-widget .toc-items {
	max-height: 400px;
	overflow-y: auto;
}

/* Popular Posts Widget */
.popular-posts-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.popular-post-item {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #E2E8F0;
}

.popular-post-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.popular-post-link {
	display: flex;
	gap: 0.75rem;
	text-decoration: none;
	transition: opacity 0.2s;
}

.popular-post-link:hover {
	opacity: 0.7;
}

.popular-post-thumb {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 6px;
	overflow: hidden;
}

.popular-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popular-post-content {
	flex: 1;
	min-width: 0;
}

.popular-post-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1E293B;
	line-height: 1.5;
	margin: 0 0 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.popular-post-date {
	font-size: 0.75rem;
	color: #64748B;
}

/* ==========================================
   Responsive Design - Single Post
   ========================================== */

@media (max-width: 1024px) {
	.post-layout {
		grid-template-columns: 1fr;
	}

	.post-sidebar {
		position: static;
		display: none;
	}

	.table-of-contents {
		display: block;
	}
}

@media (max-width: 768px) {
	.single-post-header {
		padding: 1.5rem 0 2rem;
	}

	.post-title {
		font-size: 1.75rem;
	}

	.post-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.post-thumbnail {
		margin-bottom: 2rem;
		border-radius: 0;
	}

	.single-post-content {
		padding: 2rem 0;
	}

	.entry-content {
		font-size: 1rem;
	}

	.entry-content h2 {
		font-size: 1.5rem;
		margin: 2rem 0 1rem;
	}

	.entry-content h3 {
		font-size: 1.25rem;
		margin: 1.5rem 0 0.75rem;
	}

	.author-box {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}

	.author-box-avatar {
		margin: 0 auto;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.related-posts-grid {
		grid-template-columns: 1fr;
	}

	.breadcrumb .current {
		max-width: 150px;
	}
}

/* ==========================================
   Page Template Styles (1-Column Layout)
   ========================================== */

/* Page Header */
.page-header {
	background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
	padding: 2rem 0 3rem;
	margin-bottom: 0;
}

.page-title {
	font-size: 2.5rem;
	line-height: 1.3;
	color: #1E293B;
	margin: 0 0 1rem;
	font-weight: 700;
}

.page-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.page-date {
	font-size: 0.875rem;
	color: #64748B;
}

/* Page Thumbnail */
.page-thumbnail {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 3rem;
	border-radius: 12px;
	overflow: hidden;
}

.page-thumbnail-image {
	width: 100%;
	height: auto;
	display: block;
}

/* Page Content - Single Column */
.page-content {
	padding: 3rem 0;
}

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

/* Page Links (for multi-page content) */
.page-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	padding: 2rem;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	margin: 2rem 0;
}

.page-links-title {
	font-weight: 600;
	color: #475569;
	margin-right: 0.5rem;
}

.page-links a,
.page-links > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 6px;
	color: #475569;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
}

.page-links a:hover {
	background: var(--brand);
	color: white;
	border-color: var(--brand);
}

.page-links > span {
	background: var(--brand);
	color: white;
	border-color: var(--brand);
}

/* Single Page Specific TOC Styling */
.single-page .table-of-contents {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================
   Responsive Design - Page Template
   ========================================== */

@media (max-width: 768px) {
	.page-header {
		padding: 1.5rem 0 2rem;
	}

	.page-title {
		font-size: 1.75rem;
	}

	.page-thumbnail {
		margin-bottom: 2rem;
		border-radius: 0;
	}

	.page-content {
		padding: 2rem 0;
	}

	.page-main {
		max-width: 100%;
	}

	.page-links {
		padding: 1.5rem;
	}
}

/* ==========================================
   Archive Page Styles
   ========================================== */

/* Archive Header */
.archive-header {
	background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
	padding: 2rem 0 2.5rem;
	margin-bottom: 0;
}

.archive-title {
	font-size: 2.5rem;
	line-height: 1.3;
	color: #1E293B;
	margin: 0 0 1rem;
	font-weight: 700;
}

.archive-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #64748B;
	margin-bottom: 1.5rem;
	max-width: 800px;
}

.archive-count {
	font-size: 0.9375rem;
	color: #475569;
}

.count-number {
	font-weight: 700;
	color: var(--brand);
	font-size: 1.25rem;
	margin-right: 0.25rem;
}

/* Archive Filters */
.archive-filters {
	background: white;
	border-bottom: 1px solid #E2E8F0;
	padding: 2rem 0;
	margin-bottom: 3rem;
	position: sticky;
	top: 70px;
	z-index: 100;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.filter-form {
	display: flex;
	gap: 1rem;
	align-items: flex-end;
	flex-wrap: wrap;
}

.filter-group {
	flex: 1;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.filter-search {
	flex: 2;
}

.filter-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #475569;
}

.filter-label svg {
	color: var(--brand);
}

.filter-select,
.filter-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	font-size: 0.9375rem;
	color: #1E293B;
	background: white;
	transition: all 0.3s;
}

.filter-select:focus,
.filter-input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-select {
	cursor: pointer;
}

.filter-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.btn-filter,
.btn-reset {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
	white-space: nowrap;
}

.btn-filter {
	background: var(--brand);
	color: white;
	border: none;
}

.btn-filter:hover {
	background: #3730A3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-reset {
	background: white;
	color: #64748B;
	border: 1px solid #E2E8F0;
}

.btn-reset:hover {
	background: #F8FAFC;
	color: #475569;
	border-color: #CBD5E1;
}

/* Archive Content */
.archive-content {
	padding: 0 0 4rem;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

/* Archive Card */
.archive-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #E2E8F0;
	transition: all 0.3s;
}

.archive-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 28px rgba(79, 70, 229, 0.15);
	border-color: var(--brand);
}

.archive-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.archive-card-thumbnail {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: #F1F5F9;
}

.archive-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.archive-card:hover .archive-card-image {
	transform: scale(1.1);
}

.archive-card-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.375rem 0.875rem;
	background: var(--brand);
	color: white;
	border-radius: 4px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.archive-card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.archive-card-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1E293B;
	line-height: 1.5;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
}

.archive-card:hover .archive-card-title {
	color: var(--brand);
}

.archive-card-excerpt {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #64748B;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.archive-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #E2E8F0;
}

.meta-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.meta-author .author-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
}

.meta-author .author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-name {
	font-size: 0.875rem;
	font-weight: 500;
	color: #475569;
}

.meta-date {
	font-size: 0.875rem;
	color: #94A3B8;
}

/* Archive Pagination */
.archive-pagination {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}

.archive-pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 44px;
	height: 44px;
	padding: 0 1rem;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	color: #475569;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
}

.archive-pagination .page-numbers:hover {
	background: #F8FAFC;
	border-color: var(--brand);
	color: var(--brand);
}

.archive-pagination .page-numbers.current {
	background: var(--brand);
	color: white;
	border-color: var(--brand);
}

.archive-pagination .page-numbers.dots {
	border: none;
	background: transparent;
}

.archive-pagination .page-numbers.dots:hover {
	background: transparent;
	color: #475569;
}

.archive-pagination .prev,
.archive-pagination .next {
	font-weight: 600;
}

/* No Posts Found */
.no-posts-found {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.no-posts-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
	border-radius: 50%;
	margin-bottom: 2rem;
}

.no-posts-icon svg {
	color: var(--brand);
}

.no-posts-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 1rem;
}

.no-posts-message {
	font-size: 1rem;
	line-height: 1.7;
	color: #64748B;
	margin: 0 0 2rem;
}

.no-posts-found .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: var(--brand);
	color: white;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}

.no-posts-found .btn-primary:hover {
	background: #3730A3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* ==========================================
   Responsive Design - Archive Page
   ========================================== */

@media (max-width: 1024px) {
	.archive-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.archive-filters {
		position: relative;
		top: 0;
	}
}

@media (max-width: 768px) {
	.archive-header {
		padding: 1.5rem 0 2rem;
	}

	.archive-title {
		font-size: 1.75rem;
	}

	.archive-filters {
		padding: 1.5rem 0;
		margin-bottom: 2rem;
	}

	.filter-form {
		flex-direction: column;
		gap: 1rem;
	}

	.filter-group,
	.filter-search {
		width: 100%;
		min-width: 100%;
	}

	.filter-actions {
		width: 100%;
		flex-direction: column;
	}

	.btn-filter,
	.btn-reset {
		width: 100%;
		justify-content: center;
	}

	.archive-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.archive-card-thumbnail {
		height: 200px;
	}

	.archive-pagination {
		margin-top: 3rem;
	}

	.no-posts-found {
		padding: 3rem 1rem;
	}
}

/* ==========================================
   Flow Page Styles (ご利用の流れ)
   ========================================== */

.page-lower .hero-content{
	display: block;
	text-align: center;
}
/* Flow Page Container */
.flow-page {
	background: #FFFFFF;
}

/* Flow Hero Section */
.flow-hero {
	background: linear-gradient(135deg, #667EEA 0%, var(--brand) 100%);
	padding: 5rem 0 6rem;
	position: relative;
	overflow: hidden;
}

.flow-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
	background-size: 30px 30px;
	pointer-events: none;
}

.flow-hero .inner {
	position: relative;
	z-index: 1;
}


.flow-hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: white;
	margin: 0 0 1.5rem;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.flow-hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
}

/* Flow Steps Section */
.flow-steps-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.steps-container {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

/* Flow Step Item */
.flow-step-item {
	position: relative;
	display: grid;
	grid-template-columns: 9fr 1fr;
	gap: 2.5rem;
	margin-bottom: 5rem;
}

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

.flow-step-item:last-child .flow-step-connector {
	display: none;
}

/* Step Number */
.flow-step-number {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--brand) 0%, #5B21B6 100%);
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
	flex-shrink: 0;
	z-index: 2;
}

.flow-step-number .number {
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	line-height: 1;
}

/* Step Connector */
.flow-step-connector {
	position: absolute;
	left: 50px;
	top: 100px;
	width: 3px;
	height: calc(100% + 5rem - 100px);
	background: linear-gradient(180deg, var(--brand) 0%, #E0E7FF 100%);
	z-index: 1;
}

/* Step Icon */
.flow-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	transition: all 0.3s;
}

.flow-step-item:hover .flow-step-icon {
	background: linear-gradient(135deg, var(--brand) 0%, #5B21B6 100%);
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.flow-step-icon svg {
	color: var(--brand);
	transition: color 0.3s;
}

.flow-step-item:hover .flow-step-icon svg {
	color: white;
}

/* Step Content */
.flow-step-content {
	background: white;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #E2E8F0;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 2;
}

.flow-step-item:hover .flow-step-content {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border-color: #C7D2FE;
	transform: translateY(-4px);
}

.flow-step-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0;
	line-height: 1.4;
}

.flow-step-description {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.flow-step-description p {
	font-size: 1rem;
	line-height: 1.8;
	color: #475569;
	margin: 0;
}

.flow-step-description ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.flow-step-description li {
	font-size: 1rem;
	line-height: 1.8;
	color: #475569;
	padding-left: 1.5rem;
	position: relative;
}

.flow-step-description li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--brand);
	font-weight: 700;
	font-size: 1.25rem;
}

.flow-sub-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1E293B;
	margin: 1.5rem 0 0.75rem;
}

.flow-sub-title:first-child {
	margin-top: 0;
}

/* Step Purpose */
.flow-step-purpose {
	background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
	border-left: 3px solid var(--brand);
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	margin-top: 0.5rem;
}

.flow-purpose-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--brand);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.flow-purpose-label svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.flow-step-purpose p {
	font-size: 1rem;
	line-height: 1.7;
	color: #0C4A6E;
	margin: 0;
	font-weight: 500;
}

/* Flow CTA Section */
.flow-cta-section {
	background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.flow-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.05"/></svg>');
	background-size: 25px 25px;
	pointer-events: none;
}

.flow-cta-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.flow-cta-title {
	font-size: 2.25rem;
	font-weight: 800;
	color: white;
	margin: 0 0 1.5rem;
	letter-spacing: 0.02em;
}

.flow-cta-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2.5rem;
}

.flow-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.flow-btn-primary,
.flow-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s;
	white-space: nowrap;
}

.flow-btn-primary {
	background: var(--brand);
	color: white;
	border: 2px solid var(--brand);
}

.flow-btn-primary:hover {
	background: #3730A3;
	border-color: #3730A3;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.flow-btn-secondary {
	background: white;
	color: var(--brand);
	border: 2px solid white;
}

.flow-btn-secondary:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.flow-btn-primary svg,
.flow-btn-secondary svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* ==========================================
   Responsive Design - Flow Page
   ========================================== */

@media (max-width: 1024px) {
	.flow-hero-title {
		font-size: 2.5rem;
	}

	.flow-steps-section {
		padding: 4rem 0;
	}

	.flow-step-item {
		gap: 2rem;
		margin-bottom: 4rem;
	}

	.flow-cta-section {
		padding: 4rem 0;
	}

	.flow-cta-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.flow-hero {
		padding: 3rem 0 4rem;
	}

	.flow-hero-title {
		font-size: 2rem;
	}

	.flow-hero-description {
		font-size: 1rem;
	}

	.flow-steps-section {
		padding: 3rem 0;
	}

	.flow-step-item {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 3rem;
	}

	.flow-step-number {
		width: 80px;
		height: 80px;
		margin: 0 auto;
	}

	.flow-step-number .number {
		font-size: 2rem;
	}

	.flow-step-connector {
		left: 50%;
		transform: translateX(-50%);
		top: 80px;
		height: calc(100% + 3rem - 80px);
	}

	.flow-step-content {
		padding: 2rem;
	}

	.flow-step-title {
		font-size: 1.5rem;
	}

	.flow-step-icon {
		width: 56px;
		height: 56px;
	}

	.flow-cta-section {
		padding: 3rem 0;
	}

	.flow-cta-title {
		font-size: 1.75rem;
	}

	.flow-cta-description {
		font-size: 1rem;
	}

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

	.flow-btn-primary,
	.flow-btn-secondary {
		width: 100%;
		padding: 1rem 1.5rem;
	}
}

/* ==========================================
   Marketer Profile Page Styles
   ========================================== */

/* Marketer Hero Section */
.marketer-hero {
	position: relative;
	background: linear-gradient(135deg, #667EEA 0%, var(--brand) 100%);
	padding: 3rem 0 4rem;
	overflow: hidden;
}

.marketer-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
	background-size: 30px 30px;
	pointer-events: none;
}

.marketer-hero .inner {
	position: relative;
	z-index: 1;
}

/* Marketer Breadcrumb */
.marketer-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	font-size: 0.875rem;
}

.marketer-breadcrumb a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s;
}

.marketer-breadcrumb a:hover {
	color: white;
}

.marketer-breadcrumb .separator {
	color: rgba(255, 255, 255, 0.6);
}

.marketer-breadcrumb .current {
	color: white;
	font-weight: 500;
}

/* Marketer Hero Content */
.marketer-hero-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.marketer-hero-image {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	background: white;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	border: 5px solid rgba(255, 255, 255, 0.3);
}

.marketer-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.marketer-hero-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
	color: #94A3B8;
}

.marketer-hero-info {
	flex: 1;
	min-width: 0;
}

.marketer-profile-english {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 0.5rem;
}

.marketer-profile-name {
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.marketer-profile-position {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1rem;
	flex-wrap: wrap;
}

.marketer-profile-company {
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	padding: 0.375rem 0.875rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.marketer-profile-title {
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	padding: 0.375rem 0.875rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.marketer-profile-catchcopy {
	font-size: 1.25rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 1.5rem;
}

/* Marketer Hero Badges */
.marketer-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.marketer-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	color: white;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}

.marketer-badge:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.marketer-badge svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* Marketer Stats Section */
.marketer-stats {
	background: white;
	padding: 3rem 0;
	border-bottom: 1px solid #E2E8F0;
}

.marketer-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.marketer-stat-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
	border-radius: 16px;
	border: 1px solid #E2E8F0;
	transition: all 0.3s;
}

.marketer-stat-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-color: var(--brand);
}

.marketer-stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--brand) 0%, #5B21B6 100%);
	border-radius: 16px;
	color: white;
	flex-shrink: 0;
}

.marketer-stat-content {
	flex: 1;
}

.marketer-stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1E293B;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.marketer-stat-unit {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--brand);
	margin-left: 0.25rem;
}

.marketer-stat-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: #64748B;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Marketer Profile Section */
.marketer-profile-section {
	padding: 4rem 0;
	background: #FFFFFF;
}

.marketer-profile-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 3rem;
}

.marketer-profile-main {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

/* Marketer Motto */
.marketer-motto {
	display: flex;
	gap: 1.5rem;
	padding: 2rem;
	background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
	border-radius: 16px;
	border-left: 4px solid #F59E0B;
}

.marketer-motto-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: white;
	border-radius: 12px;
	color: #F59E0B;
	flex-shrink: 0;
}

.marketer-motto-content {
	flex: 1;
}

.marketer-motto-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: #92400E;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.marketer-motto-text {
	font-size: 1.125rem;
	font-weight: 600;
	color: #78350F;
	line-height: 1.6;
}

/* Marketer Section Title */
.marketer-section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--brand);
	display: inline-block;
}

/* Marketer Profile Description */
.marketer-profile-description {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid #E2E8F0;
}

.marketer-description-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #475569;
}

.marketer-description-text p {
	margin: 0 0 1rem;
}

.marketer-description-text p:last-child {
	margin-bottom: 0;
}

.marketer-description-text ul,
.marketer-description-text ol {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
}

.marketer-description-text li {
	margin-bottom: 0.5rem;
}

.marketer-description-text strong {
	font-weight: 600;
	color: #1E293B;
}

.marketer-description-text a {
	color: var(--brand);
	text-decoration: underline;
	transition: color 0.3s;
}

.marketer-description-text a:hover {
	color: #3730A3;
}

/* Marketer Tags */
.marketer-tactics,
.marketer-company-size {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid #E2E8F0;
}

.marketer-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.marketer-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
	border: 1px solid #C7D2FE;
	border-radius: 24px;
	color: var(--brand);
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.3s;
}

.marketer-tag:hover {
	background: linear-gradient(135deg, var(--brand) 0%, #5B21B6 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.marketer-tag svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.marketer-tag-size {
	background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
	border-color: #93C5FD;
	color: #1E40AF;
}

.marketer-tag-size:hover {
	background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
	color: white;
}

/* Marketer Content */
.marketer-content {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid #E2E8F0;
}

.marketer-content-body {
	font-size: 1rem;
	line-height: 1.8;
	color: #475569;
}

.marketer-content-body h2,
.marketer-content-body h3,
.marketer-content-body h4 {
	color: #1E293B;
	margin: 2rem 0 1rem;
	font-weight: 700;
}

.marketer-content-body h2 {
	font-size: 1.5rem;
}

.marketer-content-body h3 {
	font-size: 1.25rem;
}

.marketer-content-body p {
	margin: 0 0 1rem;
}

.marketer-content-body ul,
.marketer-content-body ol {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
}

.marketer-content-body li {
	margin-bottom: 0.5rem;
}

/* Marketer Sidebar */
.marketer-profile-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Marketer CTA Box */
.marketer-cta-box {
	background: linear-gradient(135deg, var(--brand) 0%, #5B21B6 100%);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	position: sticky;
	top: 100px;
	box-shadow: 0 8px 30px rgba(79, 70, 229, 0.25);
}

.marketer-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	color: white;
	margin-bottom: 1.5rem;
}

.marketer-cta-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin: 0 0 0.75rem;
}

.marketer-cta-description {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 1.5rem;
}

.marketer-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	background: white;
	color: var(--brand);
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}

.marketer-cta-button:hover {
	background: #F8FAFC;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.marketer-cta-button svg {
	width: 16px;
	height: 16px;
}

/* Marketer Share Box */
.marketer-share-box {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	border: 1px solid #E2E8F0;
}

.marketer-share-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.marketer-share-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.875rem 1.5rem;
	background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	color: #475569;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.marketer-share-button:hover {
	background: linear-gradient(135deg, var(--brand) 0%, #5B21B6 100%);
	color: white;
	border-color: var(--brand);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.marketer-share-button svg {
	width: 20px;
	height: 20px;
}

/* Marketer Related Section */
.marketer-related-section {
	background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
	padding: 4rem 0;
	border-top: 1px solid #E2E8F0;
}

.marketer-related-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 2rem;
	text-align: center;
}

.marketer-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.marketer-related-card {
	display: block;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #E2E8F0;
	transition: all 0.3s;
	text-decoration: none;
}

.marketer-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--brand);
}

.marketer-related-image {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
	background: #F1F5F9;
}

.marketer-related-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.marketer-related-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
	color: #94A3B8;
}

.marketer-related-content {
	padding: 1.5rem;
}

.marketer-related-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 0.75rem;
	transition: color 0.3s;
}

.marketer-related-card:hover .marketer-related-name {
	color: var(--brand);
}

.marketer-related-catchcopy {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #64748B;
	margin: 0 0 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.marketer-related-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #94A3B8;
	font-weight: 500;
}

.marketer-related-meta svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* ==========================================
   Responsive Design - Marketer Profile Page
   ========================================== */

@media (max-width: 1024px) {
	.marketer-hero {
		padding: 2.5rem 0 3rem;
	}

	.marketer-hero-content {
		gap: 2rem;
	}

	.marketer-hero-image {
		width: 160px;
		height: 160px;
	}

	.marketer-name {
		font-size: 2rem;
	}

	.marketer-profile-layout {
		grid-template-columns: 1fr 300px;
		gap: 2rem;
	}

	.marketer-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.marketer-hero {
		padding: 2rem 0;
	}

	.marketer-hero-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.marketer-hero-image {
		width: 140px;
		height: 140px;
		margin: 0 auto;
	}

	.marketer-hero-info {
		width: 100%;
	}

	.marketer-profile-english {
		font-size: 0.75rem;
	}

	.marketer-profile-name {
		font-size: 1.75rem;
	}

	.marketer-profile-position {
		justify-content: center;
	}

	.marketer-profile-company,
	.marketer-profile-title {
		font-size: 0.875rem;
		padding: 0.25rem 0.75rem;
	}

	.marketer-profile-catchcopy {
		font-size: 1rem;
	}

	.marketer-hero-badges {
		justify-content: center;
	}

	.marketer-stats {
		padding: 2rem 0;
	}

	.marketer-stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.marketer-stat-item {
		padding: 1.5rem;
	}

	.marketer-stat-icon {
		width: 56px;
		height: 56px;
	}

	.marketer-stat-number {
		font-size: 2rem;
	}

	.marketer-profile-section {
		padding: 3rem 0;
	}

	.marketer-profile-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.marketer-profile-sidebar {
		order: -1;
	}

	.marketer-cta-box {
		position: relative;
		top: 0;
	}

	.marketer-motto {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}

	.marketer-motto-icon {
		margin: 0 auto;
	}

	.marketer-profile-description,
	.marketer-tactics,
	.marketer-company-size,
	.marketer-content {
		padding: 1.5rem;
	}

	.marketer-section-title {
		font-size: 1.25rem;
	}

	.marketer-related-section {
		padding: 3rem 0;
	}

	.marketer-related-title {
		font-size: 1.5rem;
	}

	.marketer-related-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}



.page-plan {
    color: #333;
}

.page-plan .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-plan .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

/* .page-plan .btn-primary {
    background: #0F1419;
    color: white;
    border-color: #0F1419;
}

.page-plan .btn-primary:hover {
    background: #1a202c;
    border-color: #1a202c;
}

.page-plan .btn-secondary {
    background: transparent;
    color: #0F1419;
    border-color: #0F1419;
}

.page-plan .btn-secondary:hover {
    background: #0F1419;
    color: white;
} */

.page-plan .btn-green {
    background: #10b981;
    color: white;
    border-color: #10b981;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.page-plan .btn-green:hover {
    background: #059669;
    border-color: #059669;
}

/* Hero Section */
.page-plan .hero {
    background: linear-gradient(134deg, #667eea 0%, var(--brand) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    height: 30vh;
    min-height: 500px;
    max-height: 800px;
}

.page-plan .hero-content {
    width: 100%;
}

.page-plan .hero-badge {
    background: var(--brand);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid var(--brand);
}

.page-plan .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.page-plan .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* プラン詳細セクション */
.page-plan .plan-details {
    background: white;
    padding: 4rem 0;
}

.page-plan .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    color: #0F1419;
    font-weight: 700;
}

.page-plan .section-subtitle {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-plan .plan-overview {
    background: #f8fafc;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem);
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.page-plan .plan-price {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    color: #0F1419;
    margin-bottom: 0.5rem;
}

.page-plan .plan-price-note {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.page-plan .plan-description {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: #374151;
    line-height: 1.7;
}

/* 内容詳細 */
.page-plan .service-content {
    background: #f9fafb;
    padding: 4rem 0;
}

.page-plan .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.page-plan .content-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.page-plan .content-card h3 {
    color: #0F1419;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.page-plan .content-icon {
    background: linear-gradient(135deg, var(--brand-sub), var(--brand));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.page-plan .content-list {
    list-style: none;
    padding-left: 0;
}

.page-plan .content-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

.page-plan .content-list li::before {
    content: "●";
    color: var(--brand);
    position: absolute;
    left: 0;
}

/* こんな方におすすめ */
.page-plan .target-audience {
    background: white;
    padding: 4rem 0;
}

.page-plan .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.page-plan .audience-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.page-plan .audience-card h4 {
    color: #0F1419;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
}

.page-plan .audience-card p {
    color: #6b7280;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.6;
}

/* 相談の流れ */
.page-plan .consultation-flow {
    background: #f9fafb;
    padding: 4rem 0;
}

.page-plan .flow-steps {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.page-plan .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    gap: 1.5rem;
}

.page-plan .step-number {
    background: var(--brand);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
}

.page-plan .step-content {
    flex: 1;
    min-width: 0;
}

.page-plan .step-content h3 {
    color: #0F1419;
    margin-bottom: 0.75rem;
    font-size: clamp(1.1rem, 2.2vw, 1.2rem);
    font-weight: 600;
}

.page-plan .step-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}
.page-plan .step-content h3,
.page-plan .step-content p{
	text-align: left;
}

.page-plan .step-duration {
    background: #e5f3f0;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    white-space: nowrap;
    flex-shrink: 0;
}

/* よくある質問 */
.page-plan .faq {
    background: white;
    padding: 4rem 0;
}

.page-plan .faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.page-plan .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.page-plan .faq-question {
    background: #f8fafc;
    padding: 1.5rem;
    font-weight: 600;
    color: #0F1419;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.page-plan .faq-question:hover {
    background: #e2e8f0;
}

.page-plan .faq-answer {
    padding: 1.5rem;
    background: white;
    color: #374151;
    line-height: 1.6;
    border-top: 1px solid #e5e7eb;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
}

.page-plan .faq-toggle {
    color: #6b7280;
    font-size: 1.2rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

/* 申し込みフォーム */
.page-plan .contact-form {
    background: #f9fafb;
    padding: 4rem 0;
}

.page-plan .form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.page-plan .form-group {
    margin-bottom: 1.5rem;
}

.page-plan .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.page-plan .form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color 0.2s;
    background: white;
}

.page-plan .form-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.page-plan .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.page-plan .required {
    color: #ef4444;
}

.page-plan .highlight {
    background: linear-gradient(120deg, #fbbf24 0%, #fbbf24 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    font-weight: 600;
}

/* モバイル専用スタイル */
@media (max-width: 768px) {
    .page-plan .container {
        padding: 0 15px;
    }

    .page-plan .hero {
        padding: 2rem 0;
        min-height: 50vh;
    }

    .page-plan .hero h1 br {
        display: none;
    }

    .page-plan .plan-details,
    .page-plan .service-content,
    .page-plan .target-audience,
    .page-plan .consultation-flow,
    .page-plan .faq,
    .page-plan .contact-form {
        padding: 3rem 0;
    }

    .page-plan .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-plan .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-plan .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .page-plan .step-duration {
        align-self: center;
    }

    .page-plan .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .page-plan .faq-toggle {
        margin-left: 0;
        align-self: flex-end;
        margin-top: -1.5rem;
    }

    .page-plan .btn-green {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* タブレット専用スタイル */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-plan .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-plan .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-plan .step {
        gap: 1.5rem;
    }
}

/* 小さなモバイルデバイス */
@media (max-width: 480px) {
    .page-plan .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .page-plan .content-card,
    .page-plan .audience-card {
        padding: 1.5rem;
    }

    .page-plan .step {
        padding: 1.5rem;
    }

    .page-plan .faq-question,
    .page-plan .faq-answer {
        padding: 1.25rem;
    }

    .page-plan .form-container {
        margin: 0 10px;
    }

    /* Consultation page - 480px以下 */
    .consultation-steps {
        padding: 2rem 0;
    }

    .steps-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.25rem;
    }

    .consultation-step {
        padding: 0.75rem 0.25rem;
    }

    .consultation-steps .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        top: -12px;
    }

    .consultation-steps .step-icon {
        margin: 0.75rem auto 0.25rem;
    }

    .consultation-steps .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .consultation-steps .step-title {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .consultation-steps .step-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* 横向きモバイル */
@media (max-width: 768px) and (orientation: landscape) {
    .page-plan .hero {
        min-height: 40vh;
        padding: 2rem 0;
    }

    .page-plan .step {
        flex-direction: row;
        text-align: left;
    }

    .page-plan .step-duration {
        align-self: flex-start;
    }
}

/* 大画面対応 */
@media (min-width: 1400px) {
    .page-plan .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .page-plan .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .page-plan .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* 印刷対応 */
@media print {
    .page-plan .contact-form {
        display: none;
    }

    .page-plan .hero {
        background: #f8fafc;
        color: #333;
    }

    .page-plan * {
        background: white !important;
        color: black !important;
    }
}

/* アクセシビリティ改善 */
@media (prefers-reduced-motion: reduce) {
    .page-plan * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
    .page-plan .btn-primary {
        border: 3px solid;
    }

    .page-plan .btn-secondary {
        border: 3px solid;
    }

    .page-plan .content-card,
    .page-plan .audience-card,
    .page-plan .step,
    .page-plan .faq-item {
        border: 2px solid #000;
    }
}
/* ========================================
   相談受付フォームページ（Consultation Page）
   ======================================== */

/* ヒーローセクション */
.consultation-hero {
	position: relative;
	background: linear-gradient(135deg, var(--brand-sub) 0%, #764ba2 50%, var(--brand) 100%);
	padding: 8rem 0 6rem;
	overflow: hidden;
}

.consultation-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.3;
}

.hero-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
}

.hero-circle-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	right: -100px;
	animation: float 20s ease-in-out infinite;
}

.hero-circle-2 {
	width: 300px;
	height: 300px;
	bottom: -50px;
	left: -50px;
	animation: float 25s ease-in-out infinite reverse;
}

.hero-circle-3 {
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	animation: float 30s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(30px, -30px);
	}
	66% {
		transform: translate(-20px, 20px);
	}
}

.consultation-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: white;
}

.consultation-hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.consultation-hero-description {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	opacity: 0.95;
	line-height: 1.8;
}

.consultation-hero-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.1rem;
	font-weight: 500;
}

.hero-feature svg {
	width: 24px;
	height: 24px;
}

/* セクションタイトル */
.consultation-section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 4rem;
	color: #0F1419;
	position: relative;
}

.consultation-section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	margin: 1rem auto 0;
	border-radius: 2px;
}

/* ステップセクション */
.consultation-steps {
	padding: 6rem 0;
	background: #F8FAFC;
}

.consultation-steps .steps-container {
	display: flex;
	align-items:center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.consultation-step {
	background: white;
	padding: 1.5rem 1rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	text-align: center;
	width: 100%;
	max-width: 230px;
	position: relative;
	transition: all 0.3s ease;
}

.consultation-step:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.consultation-steps .step-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.consultation-steps .step-icon {
    margin: 1.5rem auto 1rem;
    color: var(--brand);
    background: #fff;
    border: 5px solid var(--brand);
}

.consultation-steps .step-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #0F1419;
}

.consultation-steps .step-description {
	color: #64748B;
	font-size: 0.95rem;
	line-height: 1.6;
}

.consultation-steps .step-arrow {
	font-size: 2rem;
	color: #CBD5E1;
	font-weight: 300;
}

/* フォームセクション */
.consultation-form-section {
	padding: 6rem 0;
	background: white;
}

.consultation-form-container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	padding: 3rem;
	border: 1px solid #F1F5F9;
}

.form-content {
	color: #334155;
}

/* フォーム内のスタイリング */
.form-content h2 {
	font-size: 1.75rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: #0F1419;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #F1F5F9;
}

.form-content h3 {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 1.5rem 0 1rem;
	color: #334155;
}

.form-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.form-content ul,
.form-content ol {
	margin: 1rem 0 1.5rem 1.5rem;
	line-height: 1.8;
}

.form-content li {
	margin-bottom: 0.5rem;
}

/* サポートセクション */
.consultation-support {
	padding: 6rem 0;
	background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

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

.support-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #F1F5F9;
}

.support-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border-color: #667eea;
}

.support-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #667eea;
}

.support-title {
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.support-description {
	color: #64748B;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.support-link {
	color: #667eea;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.support-link:hover {
	color: #764ba2;
	transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.consultation-hero {
		padding: 5rem 0 4rem;
	}

	.consultation-hero-title {
		font-size: 2rem;
	}

	.consultation-hero-description {
		font-size: 1rem;
	}

	.consultation-hero-features {
		flex-direction: column;
		gap: 1.5rem;
	}

	.consultation-section-title {
		font-size: 1.75rem;
	}

	.consultation-steps {
		padding: 3rem 0;
	}

	.steps-container {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
		max-width: 100%;
	}

	.consultation-steps .steps-container{
		align-items: stretch;
	}

	.step-arrow {
		display: none;
	}

	.consultation-step {
		max-width: 100%;
		width: 100%;
		padding: 1rem 0.5rem;
		min-height: auto;
	}

	.consultation-steps .step-number {
		width: 28px;
		height: 28px;
		font-size: 0.9rem;
		top: -14px;
	}

	.consultation-steps .step-icon {
		margin: 1rem auto 0.5rem;
	}

	.consultation-steps .step-icon svg {
		width: 24px;
		height: 24px;
	}

	.consultation-steps .step-title {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.consultation-steps .step-description {
		font-size: 0.75rem;
		line-height: 1.4;
	}

	.consultation-form-section {
		padding: 4rem 0;
	}

	.consultation-form-container {
		padding: 2rem 1.5rem;
	}

	.consultation-support {
		padding: 4rem 0;
	}

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

/* アニメーション */
@media (prefers-reduced-motion: no-preference) {
	.consultation-step {
		opacity: 0;
		animation: fadeInUp 0.8s ease forwards;
	}

	.consultation-step:nth-child(1) {
		animation-delay: 0.1s;
	}

	.consultation-step:nth-child(3) {
		animation-delay: 0.2s;
	}

	.consultation-step:nth-child(5) {
		animation-delay: 0.3s;
	}

	.support-card {
		opacity: 0;
		animation: fadeInUp 0.8s ease forwards;
	}

	.support-card:nth-child(1) {
		animation-delay: 0.1s;
	}

	.support-card:nth-child(2) {
		animation-delay: 0.2s;
	}

	.support-card:nth-child(3) {
		animation-delay: 0.3s;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================================
   FAQアーカイブページ（FAQ Archive）
   ======================================== */

/* ヒーローセクション */
.faq-archive-page .faq-hero {
	background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
	padding: 6rem 0 4rem;
	text-align: center;
}

.faq-archive-page .faq-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0F1419;
}

.faq-archive-page .faq-hero-description {
	font-size: 1.1rem;
	color: #64748B;
	line-height: 1.8;
}

/* 検索セクション */
.faq-archive-page .faq-search-section {
	background: white;
	padding: 3rem 0;
	border-bottom: 1px solid #F1F5F9;
}

.faq-archive-page .faq-search-form {
	max-width: 900px;
	margin: 0 auto;
}

.faq-archive-page .faq-search-container {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.faq-archive-page .faq-search-input-group {
	flex: 1;
	min-width: 250px;
	position: relative;
	display: flex;
	align-items: center;
}

.faq-archive-page .faq-search-input-group svg {
	position: absolute;
	left: 1rem;
	color: #94A3B8;
}

.faq-archive-page .faq-search-input {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 3rem;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
	outline: none;
}

.faq-archive-page .faq-search-input:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.faq-archive-page .faq-category-select {
	padding: 0.875rem 1rem;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	font-size: 1rem;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	min-width: 200px;
}

.faq-archive-page .faq-category-select:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.faq-archive-page .faq-search-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background: #667eea;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-archive-page .faq-search-button:hover {
	background: #5568d3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.faq-archive-page .faq-reset-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background: #F1F5F9;
	color: #64748B;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-archive-page .faq-reset-button:hover {
	background: #E2E8F0;
	color: #334155;
}

/* アクティブフィルター */
.faq-archive-page .faq-active-filters {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.faq-archive-page .active-filters-label {
	font-size: 0.875rem;
	color: #64748B;
	font-weight: 500;
}

.faq-archive-page .active-filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	background: #EFF6FF;
	color: #667eea;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}

.faq-archive-page .active-filter-tag svg {
	width: 14px;
	height: 14px;
}

/* 検索結果件数 */
.faq-archive-page .faq-results-count {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	color: #64748B;
	font-size: 1rem;
}

.faq-archive-page .results-number {
	font-weight: 700;
	color: #667eea;
	font-size: 1.25rem;
}

/* FAQコンテンツ */
.faq-archive-page .faq-content-section {
	padding: 4rem 0;
	background: white;
}

.faq-archive-page .faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-archive-page .faq-item {
	margin-bottom: 1rem;
	border: 2px solid #F1F5F9;
	border-radius: 16px;
	background: white;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-archive-page .faq-item:hover {
	border-color: #E2E8F0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-archive-page .faq-item.active {
	border-color: #667eea;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
}

/* 質問 */
.faq-archive-page .faq-question {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.faq-archive-page .faq-question:hover {
	background: #F8FAFC;
}

.faq-archive-page .faq-category-badge {
	position: absolute;
	top: 1rem;
	right: 4rem;
	padding: 0.25rem 0.75rem;
	background: #EFF6FF;
	color: #667eea;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

.faq-archive-page .faq-q-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
}

.faq-archive-page .faq-q-title {
	flex: 1;
	font-size: 1.125rem;
	font-weight: 600;
	color: #0F1419;
	margin: 0;
	line-height: 1.6;
	padding-right: 3rem;
}

.faq-archive-page .faq-toggle-icon {
	flex-shrink: 0;
	color: #94A3B8;
	transition: transform 0.3s ease;
}

.faq-archive-page .faq-item.active .faq-toggle-icon {
	transform: rotate(180deg);
	color: #667eea;
}

/* 回答 */
.faq-archive-page .faq-answer {
	display: flex;
	gap: 1rem;
	padding: 0 1.5rem 0 1.5rem;
	border-top: 1px solid #F1F5F9;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-archive-page .faq-item.active .faq-answer {
	max-height: 2000px;
	opacity: 1;
	padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.faq-archive-page .faq-a-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #10B981, #059669);
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
}

.faq-archive-page .faq-a-content {
	flex: 1;
	color: #334155;
	line-height: 1.8;
	padding-top: 0.5rem;
}

.faq-archive-page .faq-a-content p {
	margin-bottom: 1rem;
}

.faq-archive-page .faq-a-content ul,
.faq-archive-page .faq-a-content ol {
	margin: 1rem 0 1rem 1.5rem;
}

.faq-archive-page .faq-a-content li {
	margin-bottom: 0.5rem;
}

/* ページネーション */
.faq-archive-page .faq-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.faq-archive-page .faq-pagination a,
.faq-archive-page .faq-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border: 2px solid #E2E8F0;
	border-radius: 8px;
	color: #64748B;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.faq-archive-page .faq-pagination a:hover {
	border-color: #667eea;
	color: #667eea;
	background: #EFF6FF;
}

.faq-archive-page .faq-pagination .current {
	background: #667eea;
	color: white;
	border-color: #667eea;
}

/* 結果なし */
.faq-archive-page .faq-no-results {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.faq-archive-page .no-results-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	color: #CBD5E1;
}

.faq-archive-page .no-results-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0F1419;
}

.faq-archive-page .no-results-message {
	color: #64748B;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.faq-archive-page .btn-view-all {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: #667eea;
	color: white;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.faq-archive-page .btn-view-all:hover {
	background: #5568d3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* CTAセクション */
.faq-archive-page .faq-cta-section {
	background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
	padding: 4rem 0;
}

.faq-archive-page .faq-cta-box {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	background: white;
	padding: 3rem 2rem;
	border-radius: 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.faq-archive-page .faq-cta-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #667eea;
}

.faq-archive-page .faq-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0F1419;
}

.faq-archive-page .faq-cta-description {
	color: #64748B;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.faq-archive-page .btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: #667eea;
	color: white;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.faq-archive-page .btn-cta:hover {
	background: #5568d3;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.faq-archive-page .faq-hero {
		padding: 4rem 0 3rem;
	}

	.faq-archive-page .faq-hero-title {
		font-size: 2rem;
	}

	.faq-archive-page .faq-hero-description {
		font-size: 1rem;
	}

	.faq-archive-page .faq-search-container {
		flex-direction: column;
	}

	.faq-archive-page .faq-search-input-group,
	.faq-archive-page .faq-category-select {
		min-width: 100%;
		width: 100%;
	}

	.faq-archive-page .faq-search-button,
	.faq-archive-page .faq-reset-button {
		width: 100%;
		justify-content: center;
	}

	.faq-archive-page .faq-question {
		flex-wrap: wrap;
		padding: 1rem;
	}

	.faq-archive-page .faq-category-badge {
		position: static;
		width: 100%;
		text-align: left;
		margin-bottom: 0.5rem;
	}

	.faq-archive-page .faq-q-title {
		font-size: 1rem;
		padding-right: 0;
	}

	.faq-archive-page .faq-answer {
		padding: 0 1rem 1rem 1rem;
	}

	.faq-archive-page .faq-a-icon {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}

	.faq-archive-page .faq-q-icon {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}

	.faq-archive-page .faq-content-section {
		padding: 3rem 0;
	}

	.faq-archive-page .faq-cta-section {
		padding: 3rem 0;
	}

	.faq-archive-page .faq-cta-box {
		padding: 2rem 1.5rem;
	}

	.faq-archive-page .faq-cta-title {
		font-size: 1.35rem;
	}
}

/* ==========================================================================
   Marketer Archive Page
   ========================================================================== */

/* ヒーローセクション */
.marketer-archive-page .marketer-hero {
	background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
	padding: 4rem 0 3rem;
	margin-bottom: 0;
}

.marketer-archive-page .marketer-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0F1419;
	margin-bottom: 1rem;
	text-align: center;
}

.marketer-archive-page .marketer-hero-description {
	font-size: 1.1rem;
	color: #64748B;
	text-align: center;
	line-height: 1.8;
}

/* 検索・フィルターセクション */
.marketer-archive-page .marketer-search-section {
	background: white;
	padding: 2.5rem 0;
	border-bottom: 1px solid #F1F5F9;
}

.marketer-archive-page .marketer-search-form {
	max-width: 1000px;
	margin: 0 auto;
}

.marketer-archive-page .marketer-search-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

/* キーワード検索 */
.marketer-archive-page .marketer-search-input-group {
	position: relative;
	display: flex;
	align-items: center;
}

.marketer-archive-page .marketer-search-input-group svg {
	position: absolute;
	left: 1rem;
	color: #94A3B8;
	pointer-events: none;
}

.marketer-archive-page .marketer-search-input {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 2.75rem;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.marketer-archive-page .marketer-search-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 得意な施策フィルター */
.marketer-archive-page .marketer-tactics-filter {
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	padding: 1.5rem;
	background: #F8FAFC;
}

.marketer-archive-page .tactics-filter-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.marketer-archive-page .tactics-filter-label svg {
	color: #667eea;
}

.marketer-archive-page .tactics-checkboxes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0.75rem;
}

.marketer-archive-page .tactics-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.marketer-archive-page .tactics-checkbox:hover {
	border-color: #667eea;
	background: #F8FAFC;
}

.marketer-archive-page .tactics-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #667eea;
}

.marketer-archive-page .tactics-checkbox span {
	font-size: 0.9rem;
	color: #475569;
}

/* 検索ボタン */
.marketer-archive-page .marketer-search-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: #667eea;
	color: white;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.marketer-archive-page .marketer-search-button:hover {
	background: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* リセットボタン */
.marketer-archive-page .marketer-reset-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background: #F1F5F9;
	color: #64748B;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.marketer-archive-page .marketer-reset-button:hover {
	background: #E2E8F0;
	color: #475569;
}

/* アクティブフィルター表示 */
.marketer-archive-page .marketer-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	margin-top: 1rem;
}

.marketer-archive-page .active-filters-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748B;
}

.marketer-archive-page .active-filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.875rem;
	background: white;
	border: 1px solid #667eea;
	border-radius: 20px;
	font-size: 0.875rem;
	color: #667eea;
}

.marketer-archive-page .active-filter-tag svg {
	width: 14px;
	height: 14px;
}

/* 検索結果件数 */
.marketer-archive-page .marketer-results-count {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	padding: 1rem;
	background: #F8FAFC;
	border-radius: 12px;
	font-size: 1rem;
	color: #475569;
}

.marketer-archive-page .marketer-results-count svg {
	color: #667eea;
}

.marketer-archive-page .results-number {
	font-weight: 700;
	color: #667eea;
	font-size: 1.25rem;
}

/* マーケターグリッド */
.marketer-archive-page .marketer-content-section {
	padding: 4rem 0;
	background: #FAFBFC;
}

.marketer-archive-page .marketer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

/* マーケターカード */
.marketer-archive-page .marketer-archive-card {
	background: white;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	text-decoration: none;
	color: inherit;
	border: 2px solid transparent;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.marketer-archive-page .marketer-archive-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-color: #667eea;
}

/* プロフィール画像（丸く） */
.marketer-archive-page .marketer-archive-avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	border: 3px solid #F1F5F9;
	object-fit: cover;
}

.marketer-archive-page .marketer-archive-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 英語名 */
.marketer-archive-page .marketer-archive-english {
	font-size: 0.875rem;
	color: #94A3B8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

/* 名前 */
.marketer-archive-page .marketer-archive-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #0F1419;
}

/* 肩書き */
.marketer-archive-page .marketer-archive-specialty {
	font-size: 0.875rem;
	color: #667eea;
	font-weight: 500;
	margin-bottom: 1rem;
}

/* 自己紹介 */
.marketer-archive-page .marketer-archive-experience {
	font-size: 0.875rem;
	line-height: 1.7;
	color: #64748B;
	margin-bottom: 1rem;
	text-align: left;
	width: 100%;
}

/* 得意な施策タグ */
.marketer-archive-page .marketer-archive-tactics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: auto;
	width: 100%;
}

.marketer-archive-page .marketer-archive-tactics .tactic-tag {
	padding: 0.375rem 0.875rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 500;
}

/* ページネーション */
.marketer-archive-page .marketer-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.marketer-archive-page .marketer-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 1rem;
	background: white;
	border: 2px solid #E2E8F0;
	border-radius: 10px;
	color: #475569;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.marketer-archive-page .marketer-pagination .page-numbers:hover {
	border-color: #667eea;
	color: #667eea;
	transform: translateY(-2px);
}

.marketer-archive-page .marketer-pagination .page-numbers.current {
	background: #667eea;
	border-color: #667eea;
	color: white;
}

.marketer-archive-page .marketer-pagination .page-numbers svg {
	width: 20px;
	height: 20px;
}

/* 結果なし */
.marketer-archive-page .marketer-no-results {
	text-align: center;
	padding: 4rem 2rem;
}

.marketer-archive-page .no-results-icon {
	margin-bottom: 1.5rem;
}

.marketer-archive-page .no-results-icon svg {
	color: #CBD5E1;
}

.marketer-archive-page .no-results-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 1rem;
}

.marketer-archive-page .no-results-message {
	font-size: 1rem;
	color: #64748B;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.marketer-archive-page .btn-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2rem;
	background: #667eea;
	color: white;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.marketer-archive-page .btn-view-all:hover {
	background: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.marketer-archive-page .marketer-hero {
		padding: 3rem 0 2rem;
	}

	.marketer-archive-page .marketer-hero-title {
		font-size: 2rem;
	}

	.marketer-archive-page .marketer-hero-description {
		font-size: 1rem;
	}

	.marketer-archive-page .marketer-search-section {
		padding: 2rem 0;
	}

	.marketer-archive-page .tactics-checkboxes {
		grid-template-columns: 1fr;
	}

	.marketer-archive-page .marketer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.marketer-archive-page .marketer-archive-avatar {
		width: 120px;
		height: 120px;
	}

	.marketer-archive-page .marketer-content-section {
		padding: 3rem 0;
	}
}

/* ==========================================================================
   Author Archive Page
   ========================================================================== */

/* ヒーローセクション */
.author-archive-page .author-hero {
	background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
	padding: 4rem 0 3rem;
	margin-bottom: 0;
}

.author-archive-page .author-hero-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: center;
}

.author-archive-page .author-avatar-large {
	flex-shrink: 0;
}

.author-archive-page .author-avatar-large img {
	border-radius: 50%;
	border: 4px solid white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-archive-page .author-info {
	text-align: left;
	max-width: 600px;
}

.author-archive-page .author-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0F1419;
	margin-bottom: 1rem;
}

.author-archive-page .author-hero-description {
	font-size: 1.1rem;
	color: #64748B;
	line-height: 1.8;
}

/* 検索・フィルターセクション */
.author-archive-page .author-search-section {
	background: white;
	padding: 2.5rem 0;
	border-bottom: 1px solid #F1F5F9;
}

.author-archive-page .author-search-form {
	max-width: 1000px;
	margin: 0 auto;
}

.author-archive-page .author-search-container {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

/* キーワード検索 */
.author-archive-page .author-search-input-group {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 250px;
}

.author-archive-page .author-search-input-group svg {
	position: absolute;
	left: 1rem;
	color: #94A3B8;
	pointer-events: none;
}

.author-archive-page .author-search-input {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 2.75rem;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.author-archive-page .author-search-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 投稿タイプ選択 */
.author-archive-page .author-post-type-select {
	padding: 0.875rem 1rem;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	font-size: 1rem;
	color: #475569;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 200px;
}

.author-archive-page .author-post-type-select:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 検索ボタン */
.author-archive-page .author-search-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: #667eea;
	color: white;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.author-archive-page .author-search-button:hover {
	background: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* リセットボタン */
.author-archive-page .author-reset-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background: #F1F5F9;
	color: #64748B;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.author-archive-page .author-reset-button:hover {
	background: #E2E8F0;
	color: #475569;
}

/* アクティブフィルター表示 */
.author-archive-page .author-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	margin-top: 1rem;
}

.author-archive-page .active-filters-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748B;
}

.author-archive-page .active-filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.875rem;
	background: white;
	border: 1px solid #667eea;
	border-radius: 20px;
	font-size: 0.875rem;
	color: #667eea;
}

.author-archive-page .active-filter-tag svg {
	width: 14px;
	height: 14px;
}

/* 検索結果件数 */
.author-archive-page .author-results-count {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	padding: 1rem;
	background: #F8FAFC;
	border-radius: 12px;
	font-size: 1rem;
	color: #475569;
}

.author-archive-page .author-results-count svg {
	color: #667eea;
}

.author-archive-page .results-number {
	font-weight: 700;
	color: #667eea;
	font-size: 1.25rem;
}

/* コンテンツグリッド */
.author-archive-page .author-content-section {
	padding: 4rem 0;
	background: #FAFBFC;
}

.author-archive-page .author-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
}

/* カード */
.author-archive-page .author-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-archive-page .author-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-color: #667eea;
}

.author-archive-page .author-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* サムネイル */
.author-archive-page .author-card-thumbnail {
	position: relative;
	width: 100%;
	padding-top: 60%;
	overflow: hidden;
	background: #F1F5F9;
}

.author-archive-page .author-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.author-archive-page .author-card:hover .author-card-image {
	transform: scale(1.05);
}

/* 投稿タイプバッジ */
.author-archive-page .author-card-post-type {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.375rem 0.875rem;
	background: rgba(102, 126, 234, 0.95);
	color: white;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	z-index: 2;
}

/* カテゴリーバッジ */
.author-archive-page .author-card-category {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.375rem 0.875rem;
	background: rgba(255, 255, 255, 0.95);
	color: #667eea;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	z-index: 2;
}

/* コンテンツ */
.author-archive-page .author-card-content {
	padding: 1.5rem;
}

.author-archive-page .author-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #0F1419;
	margin-bottom: 0.75rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.author-archive-page .author-card-excerpt {
	font-size: 0.9rem;
	color: #64748B;
	line-height: 1.7;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.author-archive-page .author-card-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #F1F5F9;
}

.author-archive-page .meta-date {
	font-size: 0.875rem;
	color: #94A3B8;
}

/* ページネーション */
.author-archive-page .author-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.author-archive-page .author-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 1rem;
	background: white;
	border: 2px solid #E2E8F0;
	border-radius: 10px;
	color: #475569;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.author-archive-page .author-pagination .page-numbers:hover {
	border-color: #667eea;
	color: #667eea;
	transform: translateY(-2px);
}

.author-archive-page .author-pagination .page-numbers.current {
	background: #667eea;
	border-color: #667eea;
	color: white;
}

.author-archive-page .author-pagination .page-numbers svg {
	width: 20px;
	height: 20px;
}

/* 結果なし */
.author-archive-page .author-no-results {
	text-align: center;
	padding: 4rem 2rem;
}

.author-archive-page .no-results-icon {
	margin-bottom: 1.5rem;
}

.author-archive-page .no-results-icon svg {
	color: #CBD5E1;
}

.author-archive-page .no-results-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 1rem;
}

.author-archive-page .no-results-message {
	font-size: 1rem;
	color: #64748B;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.author-archive-page .btn-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2rem;
	background: #667eea;
	color: white;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.author-archive-page .btn-view-all:hover {
	background: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.author-archive-page .author-hero {
		padding: 3rem 0 2rem;
	}

	.author-archive-page .author-hero-content {
		flex-direction: column;
		text-align: center;
	}

	.author-archive-page .author-info {
		text-align: center;
	}

	.author-archive-page .author-hero-title {
		font-size: 2rem;
	}

	.author-archive-page .author-hero-description {
		font-size: 1rem;
	}

	.author-archive-page .author-search-section {
		padding: 2rem 0;
	}

	.author-archive-page .author-search-container {
		flex-direction: column;
	}

	.author-archive-page .author-search-input-group,
	.author-archive-page .author-post-type-select {
		min-width: 100%;
	}

	.author-archive-page .author-search-button,
	.author-archive-page .author-reset-button {
		width: 100%;
	}

	.author-archive-page .author-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.author-archive-page .author-content-section {
		padding: 3rem 0;
	}
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

/* エラーヒーローセクション */
.error-404-page .error-hero {
	background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
	padding: 5rem 0 4rem;
	text-align: center;
}

.error-404-page .error-icon {
	margin-bottom: 2rem;
}

.error-404-page .error-icon svg {
	color: #EF4444;
	filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.2));
}

.error-404-page .error-title {
	font-size: 2.75rem;
	font-weight: 700;
	color: #0F1419;
	margin-bottom: 1.5rem;
}

.error-404-page .error-description {
	font-size: 1.125rem;
	color: #64748B;
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto;
}

/* 検索セクション */
.error-404-page .error-search-section {
	padding: 3rem 0;
	background: white;
	border-bottom: 1px solid #F1F5F9;
}

.error-404-page .section-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	color: #0F1419;
	text-align: center;
	margin-bottom: 2rem;
}

.error-404-page .error-search-form {
	max-width: 700px;
	margin: 0 auto;
}

.error-404-page .error-search-container {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: white;
	border: 2px solid #E2E8F0;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.error-404-page .error-search-container:focus-within {
	border-color: #667eea;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.error-404-page .error-search-container svg {
	color: #94A3B8;
	flex-shrink: 0;
}

.error-404-page .error-search-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 1.125rem;
	padding: 0.5rem;
	color: #0F1419;
}

.error-404-page .error-search-input::placeholder {
	color: #94A3B8;
}

.error-404-page .error-search-button {
	padding: 0.75rem 2rem;
	background: #667eea;
	color: white;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.error-404-page .error-search-button:hover {
	background: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* コンテンツセクション */
.error-404-page .error-content-section {
	padding: 4rem 0;
	background: #FAFBFC;
}

.error-404-page .box-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #0F1419;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #667eea;
}

.error-404-page .error-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

/* 主要ページへのリンク */
.error-404-page .error-links-box {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	border: 2px solid #F1F5F9;
}

.error-404-page .error-main-links {
	display: grid;
	gap: 1rem;
}

.error-404-page .error-link-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: #F8FAFC;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.error-404-page .error-link-card:hover {
	border-color: #667eea;
	background: white;
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.error-404-page .link-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
}

.error-404-page .link-icon svg {
	color: white;
}

.error-404-page .link-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #0F1419;
	margin-bottom: 0.25rem;
}

.error-404-page .link-content p {
	font-size: 0.875rem;
	color: #64748B;
}

/* カテゴリーボックス */
.error-404-page .error-categories-box {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	border: 2px solid #F1F5F9;
}

.error-404-page .error-category-group {
	margin-bottom: 2rem;
}

.error-404-page .error-category-group:last-child {
	margin-bottom: 0;
}

.error-404-page .category-group-title {
	font-size: 1rem;
	font-weight: 600;
	color: #667eea;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.error-404-page .category-group-title::before {
	content: '';
	width: 4px;
	height: 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

.error-404-page .error-category-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.error-404-page .error-category-link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 20px;
	text-decoration: none;
	color: #475569;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.error-404-page .error-category-link:hover {
	background: #667eea;
	border-color: #667eea;
	color: white;
	transform: translateY(-2px);
}

.error-404-page .category-count {
	font-size: 0.75rem;
	opacity: 0.7;
}

/* おすすめ記事 */
.error-404-page .error-recent-posts {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	border: 2px solid #F1F5F9;
}

.error-404-page .error-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.error-404-page .error-post-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid #F1F5F9;
	transition: all 0.3s ease;
}

.error-404-page .error-post-card:hover {
	border-color: #667eea;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.error-404-page .error-post-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.error-404-page .error-post-thumbnail {
	position: relative;
	width: 100%;
	padding-top: 60%;
	overflow: hidden;
	background: #F1F5F9;
}

.error-404-page .error-post-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.error-404-page .error-post-card:hover .error-post-thumbnail img {
	transform: scale(1.05);
}

.error-404-page .error-post-type {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.375rem 0.75rem;
	background: rgba(102, 126, 234, 0.95);
	color: white;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.error-404-page .error-post-content {
	padding: 1.25rem;
}

.error-404-page .error-post-title {
	font-size: 1rem;
	font-weight: 600;
	color: #0F1419;
	margin-bottom: 0.5rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.error-404-page .error-post-date {
	font-size: 0.875rem;
	color: #94A3B8;
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.error-404-page .error-content-grid {
		grid-template-columns: 1fr;
	}

	.error-404-page .error-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.error-404-page .error-hero {
		padding: 3rem 0 2rem;
	}

	.error-404-page .error-icon svg {
		width: 80px;
		height: 80px;
	}

	.error-404-page .error-title {
		font-size: 2rem;
	}

	.error-404-page .error-description {
		font-size: 1rem;
	}

	.error-404-page .error-search-section {
		padding: 2rem 0;
	}

	.error-404-page .section-subtitle {
		font-size: 1.25rem;
	}

	.error-404-page .error-search-container {
		flex-direction: column;
		align-items: stretch;
	}

	.error-404-page .error-search-button {
		width: 100%;
	}

	.error-404-page .error-content-section {
		padding: 3rem 0;
	}

	.error-404-page .error-posts-grid {
		grid-template-columns: 1fr;
	}

	.error-404-page .box-title {
		font-size: 1.25rem;
	}
}
