/*
Theme Name: 不用品回収比較センター
Theme URI: https://umarekawari.online/
Author: InfinityDesign
Author URI: https://example.com/
Description: 不用品回収業者比較サイト - エレガントで洗練されたデザイン
Version: 2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fuyohin-theme
*/

/* ===========================
   CSS Variables & Design Tokens
   =========================== */
:root {
  /* Colors - Warm & Friendly Tone */
  --color-primary: #ff9f43;
  --color-primary-hover: #f59e0b;
  --color-secondary: #faf8f5;
  --color-accent: #4caf50;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-border: #e8e4df;
  --color-bg: #faf8f5;
  --color-bg-alt: #ffffff;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ===========================
   Base Styles
   =========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

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

/* ===========================
   Layout
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===========================
   Header
   =========================== */
/* ===========================
   Header Styles
   =========================== */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

/* ロゴエリア */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.125rem;
  transition: opacity 0.2s ease;
}

.header-logo a:hover {
  opacity: 0.8;
}

.header-logo svg {
  flex-shrink: 0;
}

.site-name {
  font-family: var(--font-heading);
  white-space: nowrap;
}

/* ナビゲーション */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.nav-link svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-link:hover svg {
  transform: translateY(-1px);
}

/* CTAボタン */
.nav-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.nav-cta svg {
  stroke: white;
}

/* 都道府県ドロップダウン */
.prefecture-dropdown {
  position: relative;
}

.prefecture-btn {
  position: relative;
}

.prefecture-btn .dropdown-arrow {
  width: 10px;
  height: 10px;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.prefecture-btn[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.prefecture-btn[aria-expanded="true"] {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.prefecture-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
  min-width: 650px;
  max-height: 520px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.prefecture-menu.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.prefecture-region h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prefecture-region ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.prefecture-region li {
  margin: 0;
}

.prefecture-region a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.prefecture-region a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--color-primary);
  border-radius: 2px;
  transition: height 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.prefecture-region a:hover {
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.08) 0%, transparent 100%);
  color: var(--color-primary);
  padding-left: 1rem;
  font-weight: 500;
}

.prefecture-region a:hover::before {
  height: 70%;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .site-name {
    display: none;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .header-nav {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .nav-link {
    flex: 1;
    justify-content: center;
    min-width: 100px;
  }
  
  .prefecture-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: 95vw;
    max-width: 95vw;
    grid-template-columns: 1fr;
  }
  
  .prefecture-menu.active {
    transform: translateX(-50%);
  }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
  border-radius: 0.75rem;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: transparent;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===========================
   Sections
   =========================== */
section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text);
}

.section-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* ===========================
   Features Section
   =========================== */
.features {
  background: var(--color-bg-alt);
}

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

.feature-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===========================
   Rankings Section
   =========================== */
/* TOPページ用ランキングカード */
.top-ranking-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.top-ranking-card {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--color-border);
}

.top-ranking-card:hover {
  box-shadow: 0 12px 30px rgba(255, 159, 67, 0.2);
  transform: translateY(-8px);
  border-color: var(--color-primary);
}

.top-ranking-card.rank-1 {
  border-color: #ff9f43;
  background: linear-gradient(to bottom, #fff8f0 0%, white 100%);
}

.top-ranking-card.rank-1 .rank-badge-top {
  background: linear-gradient(135deg, #ff9f43 0%, #f59e0b 100%);
}

.top-ranking-card.rank-2 {
  border-color: #ffb366;
}

.top-ranking-card.rank-2 .rank-badge-top {
  background: linear-gradient(135deg, #ffb366 0%, #ff9f43 100%);
}

.top-ranking-card.rank-3 {
  border-color: #ffc999;
}

.top-ranking-card.rank-3 .rank-badge-top {
  background: linear-gradient(135deg, #ffc999 0%, #ffb366 100%);
}

.top-ranking-card.rank-3 .rank-badge-top {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.rank-badge-top {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.rank-badge-top .rank-number {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.company-logo {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
  border-bottom: 1px solid var(--color-border);
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-content {
  padding: 1.5rem;
}

.card-content .company-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-content .company-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-content .rating-stars {
  display: flex;
  gap: 2px;
}

.card-content .rating-stars .star {
  font-size: 1rem;
}

.card-content .rating-stars .star.filled {
  color: #fbbf24;
}

.card-content .rating-stars .star.half {
  color: #fbbf24;
  opacity: 0.5;
}

.card-content .rating-stars .star.empty {
  color: #e5e7eb;
}

.card-content .rating-value {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.card-content .company-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.card-content .company-price .price-label {
  font-weight: 600;
  color: var(--color-text);
}

.card-content .company-price .price-value {
  color: var(--color-primary);
  font-weight: 600;
}

.card-content .company-areas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.card-content .company-areas svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-card:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.btn-card svg {
  transition: transform 0.2s ease;
}

.btn-card:hover svg {
  transform: translateX(4px);
}

/* ランキングページ用カード */
.ranking-cards {
  display: grid;
  gap: var(--spacing-lg);
}

.ranking-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.ranking-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.ranking-card.rank-1 {
  border: 3px solid #fbbf24;
}

.ranking-card.rank-2 {
  border: 3px solid #94a3b8;
}

.ranking-card.rank-3 {
  border: 3px solid #cd7f32;
}

.rank-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-weight: 700;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.rank-number {
  font-size: 2rem;
  font-family: var(--font-heading);
}

.rank-label {
  font-size: 1rem;
}

.company-image {
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

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

.company-info {
  padding: var(--spacing-lg);
}

.company-name {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.company-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-value {
  font-weight: 600;
  color: var(--color-text);
}

.company-price,
.company-areas {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
}

.price-label,
.areas-label {
  font-weight: 600;
  color: var(--color-text);
}

.company-excerpt {
  margin: var(--spacing-md) 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

.company-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 1.25rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(255, 159, 67, 0.2);
  transform: translateY(-4px);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.service-description {
  color: var(--color-text-light);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #ff9f43 0%, #f59e0b 100%);
  color: white;
  text-align: center;
  padding: var(--spacing-2xl) 0;
  box-shadow: 0 10px 40px rgba(255, 159, 67, 0.3);
}

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
  background: linear-gradient(135deg, #ff9f43 0%, #f59e0b 100%);
  color: white;
  padding: var(--spacing-xl) 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 159, 67, 0.3);
}

.page-title {
  font-size: 3rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.page-description {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* ===========================
   Quote Form
   =========================== */
.quote-form-wrapper {
  max-width: 800px;
  margin: var(--spacing-xl) auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-xl);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.step.completed .step-number {
  background: #10b981;
  color: white;
}

.step-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.step.active .step-label {
  color: var(--color-primary);
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.service-options,
.volume-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.service-option,
.volume-option {
  cursor: pointer;
}

.service-option input,
.volume-option input {
  display: none;
}

.option-card {
  padding: var(--spacing-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.service-option input:checked + .option-card,
.volume-option input:checked + .option-card {
  border-color: var(--color-primary);
  background: rgba(30, 64, 175, 0.05);
  box-shadow: var(--shadow-md);
}

.option-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.option-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.option-description {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.form-fields {
  display: grid;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--color-text);
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.success-message {
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto var(--spacing-lg);
}

/* ===========================
   Rankings Page
   =========================== */
.ranking-tabs {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  border-bottom: 2px solid var(--color-border);
  overflow-x: auto;
}

.tab-button {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.tab-button.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.ranking-list {
  display: grid;
  gap: var(--spacing-lg);
}

.ranking-item {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-lg);
  transition: all 0.3s ease;
}

.ranking-item:hover {
  box-shadow: var(--shadow-xl);
}

.rank-number-large {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  min-width: 80px;
  text-align: center;
}

.company-details {
  flex: 1;
  display: flex;
  gap: var(--spacing-md);
}

.company-thumbnail {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.company-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-main {
  flex: 1;
}

.company-title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.rating-display {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-number {
  font-weight: 600;
  font-size: 1.125rem;
}

.company-content {
  margin: var(--spacing-md) 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

.company-meta {
  display: grid;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
}

.meta-item {
  display: flex;
  gap: var(--spacing-xs);
}

.meta-label {
  font-weight: 600;
  color: var(--color-text);
}

.meta-value {
  color: var(--color-text-light);
}

/* ===========================
   Footer
   =========================== */
footer {
  background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  border-top: 3px solid var(--color-primary);
}

footer a {
  color: white;
  opacity: 0.8;
}

footer a:hover {
  opacity: 1;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .ranking-item {
    flex-direction: column;
  }
  
  .rank-number-large {
    min-width: auto;
  }
  
  .company-details {
    flex-direction: column;
  }
  
  header nav ul {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .service-options,
  .volume-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}


/* ===========================
   Prefecture Links Section
   =========================== */

.prefecture-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.prefecture-section .section-title {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.prefecture-section .section-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-2xl);
}

.prefecture-group {
  margin-bottom: var(--spacing-2xl);
}

.prefecture-group-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.prefecture-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.prefecture-link {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: white;
  border: 2px solid var(--color-border);
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.prefecture-link:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 159, 67, 0.3);
}

.prefecture-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .prefecture-links {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--spacing-xs);
  }
  
  .prefecture-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.875rem;
  }
  
  .prefecture-group-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .prefecture-links {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===========================
   Column Pages
   =========================== */

/* Column Hero */
.column-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
}

.column-hero .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.column-hero .hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* Column List Section */
.column-list-section {
  padding: 4rem 0;
  background: var(--color-bg);
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.column-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.column-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.column-thumbnail {
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

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

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

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

.column-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.column-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.column-category {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.column-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.column-title a {
  color: var(--color-text);
  transition: color 0.2s ease;
}

.column-title a:hover {
  color: var(--color-primary);
}

.column-excerpt {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.column-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.column-read-more:hover {
  gap: 0.75rem;
}

.column-read-more svg {
  transition: transform 0.2s ease;
}

.column-read-more:hover svg {
  transform: translateX(4px);
}

/* Pagination */
.column-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.column-pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-pagination .page-numbers li {
  margin: 0;
}

.column-pagination a,
.column-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.column-pagination a:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.column-pagination .current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-light);
}

/* ===========================
   Article Single
   =========================== */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.article-single {
  background: white;
}

.article-header {
  padding: 3rem 0 2rem;
  background: var(--color-bg);
}

.article-category {
  margin-bottom: 1rem;
}

.article-category a {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}

.article-category a:hover {
  background: var(--color-primary-hover);
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.article-date,
.article-update {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-featured-image {
  padding: 2rem 0;
  background: var(--color-bg);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-content {
  padding: 3rem 0;
}

/* H2とH3のスタイルは.single-postと.article-singleで個別に定義 */

.article-content p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

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

.article-content li {
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.article-content a:hover {
  color: var(--color-primary-hover);
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 0.5rem;
}

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

.article-tags {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.article-tags .container-narrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: var(--color-text);
}

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

.tag-item {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  color: var(--color-primary);
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tag-item:hover {
  background: var(--color-primary);
  color: white;
}

.article-footer {
  padding: 3rem 0;
  background: var(--color-bg);
}

.article-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.cta-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.related-posts {
  padding: 4rem 0;
}

.related-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-text);
}

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

.related-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-thumbnail {
  height: 160px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

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

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

.related-content {
  padding: 1.25rem;
}

.related-date {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.related-post-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.related-post-title a {
  color: var(--color-text);
  transition: color 0.2s ease;
}

.related-post-title a:hover {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .column-hero .hero-title {
    font-size: 2rem;
  }
  
  .column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .article-title {
    font-size: 1.5rem;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .article-content h3 {
    font-size: 1.25rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   コラム一覧ページ - おしゃれデザイン
======================================== */
.column-archive {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.archive-hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.archive-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.archive-hero .container {
  position: relative;
  z-index: 1;
}

.archive-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.archive-description {
  font-size: 1.25rem;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.archive-content {
  padding: 5rem 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.archive-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.archive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.archive-card:hover::before {
  transform: scaleX(1);
}

.archive-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.archive-card-content {
  padding: 2rem;
}

.archive-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.archive-card-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.archive-card-category {
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.archive-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.archive-card-title a {
  color: var(--color-text);
  transition: all 0.3s ease;
  background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.archive-card-title a:hover {
  background-size: 100% 2px;
  color: #667eea;
}

.archive-card-excerpt {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.archive-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.archive-card-link svg {
  transition: transform 0.3s ease;
}

.archive-card-link:hover {
  gap: 0.875rem;
  color: #764ba2;
}

.archive-card-link:hover svg {
  transform: translateX(4px);
}

.archive-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.archive-pagination a,
.archive-pagination span {
  padding: 0.875rem 1.5rem;
  background: white;
  color: var(--color-text);
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.archive-pagination a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}

.archive-pagination .current {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.archive-no-posts {
  text-align: center;
  padding: 5rem 2rem;
  font-size: 1.25rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* コラム詳細ページ - おしゃれデザイン */
.single-post .article-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0 3rem;
  margin-bottom: 0;
}

.single-post .article-category {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-post .article-title {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.single-post .article-meta {
  color: rgba(255, 255, 255, 0.9);
}

.single-post .article-meta svg {
  opacity: 0.9;
}

.single-post .article-featured-image {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.single-post .article-content {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

/* H2とH3のスタイルは.article-singleで統一 */

.single-post .article-content blockquote {
  border-left: 4px solid #667eea;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
  font-style: italic;
  color: var(--color-text);
}

.single-post .article-content table {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.single-post .article-content th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 600;
}

.single-post .article-content tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.single-post .tags-list {
  gap: 0.75rem;
}

.single-post .tag-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  border: 2px solid transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.single-post .tag-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.single-post .article-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.single-post .cta-title {
  color: white;
}

.single-post .cta-description {
  color: rgba(255, 255, 255, 0.9);
}

.single-post .btn-primary {
  background: white;
  color: #667eea;
  font-weight: 700;
}

.single-post .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.single-post .related-card {
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.single-post .related-card:hover {
  border-color: #667eea;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .archive-title {
    font-size: 2rem;
  }
  
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .single-post .article-title {
    font-size: 1.75rem;
  }
  
  .single-post .article-content {
    padding: 2rem 1.5rem;
  }
  
  .single-post .article-content h2 {
    font-size: 1.5rem;
  }
  
  .single-post .article-content h3 {
    font-size: 1.25rem;
  }
}

/* コラム詳細ページ - 完全リニューアル */
/* パンくずリスト */
.breadcrumb-wrapper {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #667eea;
  transition: all 0.2s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #adb5bd;
}

.breadcrumb-current {
  color: #6c757d;
  font-weight: 500;
}

/* ヘッダー */
.article-single .article-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0 3rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.article-single .article-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.article-single .article-header .container-narrow {
  position: relative;
  z-index: 1;
}

.article-single .article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.article-single .article-category:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.article-single .article-category a {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-single .article-title {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.article-single .article-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.95);
}

.article-single .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.article-single .meta-item svg {
  opacity: 0.9;
}

/* 本文 */
.article-single .article-body {
  padding: 4rem 0;
  background: white;
}

.article-single .article-content {
  background: white;
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #2d3748;
}

.article-single .article-content h2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.article-single .article-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.article-single .article-content h3 {
  color: #667eea;
  position: relative;
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.article-single .article-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
}

.article-single .article-content p {
  margin-bottom: 1.75rem;
}

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

.article-single .article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.article-single .article-content blockquote {
  border-left: 4px solid #667eea;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.08) 0%, transparent 100%);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
  font-style: italic;
  color: #4a5568;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-single .article-content table {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

.article-single .article-content th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
}

.article-single .article-content td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.article-single .article-content tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.article-single .article-content a {
  color: #667eea;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.article-single .article-content a:hover {
  color: #764ba2;
}

.article-single .article-content strong {
  color: #667eea;
  font-weight: 700;
}

/* タグ */
.article-single .article-tags {
  padding: 3rem 0;
  background: #f8f9fa;
}

.article-single .tags-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-single .tags-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #667eea;
  font-size: 1.125rem;
}

.article-single .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-single .tag-item {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  border: 2px solid transparent;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.article-single .tag-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* CTA */
.article-single .article-footer {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.article-single .article-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.article-single .article-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.article-single .cta-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-single .cta-icon svg {
  color: white;
}

.article-single .cta-title {
  color: white;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-single .cta-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.article-single .btn-primary {
  background: white;
  color: #667eea;
  font-weight: 700;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.article-single .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* 関連記事 */
.article-single .related-posts {
  padding: 5rem 0;
  background: white;
}

.article-single .related-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #667eea;
}

.article-single .related-title svg {
  color: #667eea;
}

.article-single .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.article-single .related-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-single .related-card:hover {
  border-color: #667eea;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
  transform: translateY(-4px);
}

.article-single .related-content {
  padding: 0;
}

.article-single .related-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
  font-weight: 500;
}

.article-single .related-post-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.article-single .related-post-title a {
  color: var(--color-text);
  transition: color 0.2s ease;
}

.article-single .related-post-title a:hover {
  color: #667eea;
}

.article-single .related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.article-single .related-link:hover {
  gap: 0.75rem;
  color: #764ba2;
}

.article-single .related-link svg {
  transition: transform 0.3s ease;
}

.article-single .related-link:hover svg {
  transform: translateX(4px);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.8125rem;
  }
  
  .article-single .article-title {
    font-size: 1.875rem;
  }
  
  .article-single .article-meta {
    gap: 1rem;
  }
  
  .article-single .article-content {
    font-size: 1rem;
  }
  
  .article-single .article-content h2 {
    font-size: 1.5rem;
  }
  
  .article-single .article-content h3 {
    font-size: 1.25rem;
  }
  
  .article-single .cta-title {
    font-size: 1.75rem;
  }
  
  .article-single .related-title {
    font-size: 1.75rem;
  }
  
  .article-single .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ========================================
   Pickupバナー（アフィリエイト）
======================================== */
.pickup-banners {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pickup-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.pickup-banner {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.pickup-banner:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pickup-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pickup-banner .banner-text {
  padding: 2rem;
  text-align: center;
}

.pickup-banner .banner-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.pickup-banner .banner-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pickup-banner:hover .banner-cta {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .pickup-banners {
    padding: 1.5rem;
  }
  
  .pickup-title {
    font-size: 1.5rem;
  }
  
  .pickup-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   SEO Content Sections
   ======================================== */

.seo-content {
    padding: 60px 0;
    background: #fff;
}

.seo-content:nth-of-type(even) {
    background: #f8f9fa;
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text strong {
    color: #7c3aed;
    font-weight: 600;
}

/* Price Table Section */
.price-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table thead {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
}

.price-table th,
.price-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.price-table th {
    font-weight: 600;
    font-size: 15px;
}

.price-table td {
    font-size: 14px;
    color: #374151;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: #f9fafb;
}

.price-note {
    margin-top: 20px;
    padding: 20px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.price-note p {
    margin: 8px 0;
    font-size: 14px;
    color: #92400e;
}

/* Selection Points Section */
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.point-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.point-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.point-description {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* Flow Section */
.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.step-number {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

.flow-arrow {
    font-size: 30px;
    color: #7c3aed;
    font-weight: 700;
}

/* Comparison Table Section */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    font-size: 14px;
    color: #374151;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1f2937;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-note {
    margin-top: 20px;
    padding: 20px;
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
}

.comparison-note p {
    margin: 8px 0;
    font-size: 14px;
    color: #1e40af;
    font-weight: 600;
}

.comparison-note ul {
    margin: 12px 0 0 20px;
    list-style: disc;
}

.comparison-note li {
    margin: 8px 0;
    font-size: 14px;
    color: #1e3a8a;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.faq-question::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.faq-answer {
    padding-left: 30px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* SEO Content Responsive Design */
@media (max-width: 768px) {
    .seo-content {
        padding: 40px 0;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .point-card {
        padding: 25px 20px;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .flow-step {
        max-width: 100%;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* ===========================
   New Hero Section (Illustration Style)
   =========================== */
.hero-new {
  background-color: #faf8f5;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(250, 248, 245, 0.95) 0%, rgba(250, 248, 245, 0.7) 50%, transparent 100%);
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2d2d2d;
  margin-bottom: 0;
}

.hero-search-box {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
}

.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.hero-search-input option:first-child {
  color: #999;
}

.hero-search-btn {
  background: #ff9f43;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
  text-decoration: none;
}

.hero-search-btn:hover {
  background: #f59e0b;
  color: white;
}

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

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  flex-shrink: 0;
}

.hero-check-item span {
  font-size: 1.125rem;
  color: #2d2d2d;
}

.hero-illustration-spacer {
  /* Empty spacer for grid layout */
}

.hero-stats-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item-new {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-value-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9f43;
  margin-bottom: 0.25rem;
}

.stat-label-new {
  font-size: 0.875rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-illustration {
    display: none;
  }
  
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-search-box {
    flex-direction: column;
  }
  
  .hero-search-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-value-new {
    font-size: 2rem;
  }
}
