/*
Theme Name: Cabaclub Tainyu Navi
Theme URI: https://example.com/cabaclub-tainyu-navi
Author: Cabaclub Tainyu Navi
Author URI: https://example.com
Description: 全国のキャバクラ体入情報を掲載するキュート・ポップなテーマ。専属担当者がお店探しをサポートする紹介プラットフォーム向けデザイン。
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cabaclub-tainyu-navi
Tags: blog, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --pink-50: #fff4f8;
  --pink-100: #ffe1ec;
  --pink-200: #ffc4dd;
  --pink-300: #ff9ec4;
  --pink-400: #ff6fa8;
  --pink-500: #ff3d8a;
  --pink-600: #e91e63;
  --gold: #f5b942;
  --gold-light: #fde6a8;
  --purple: #a685e2;
  --lavender: #f0e6ff;
  --cream: #fff9f0;
  --text: #4a2840;
  --text-light: #8a6378;
  --text-dim: #c9a8b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, var(--pink-50) 0%, #fff 50%, var(--lavender) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'M PLUS Rounded 1c', 'Quicksand', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

/* Top notice bar */
.notice-bar {
  background: linear-gradient(90deg, var(--pink-500), var(--purple), var(--pink-500));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 50;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.7rem 2rem;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px dashed var(--pink-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s;
}

.site-logo:hover {
  transform: scale(1.03);
}

.site-logo img {
  height: 80px;
  width: auto;
  display: block;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.main-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover { color: var(--pink-500); }

.nav-cta {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 61, 138, 0.5);
}

.nav-cta.nav-line {
  background: #06c755;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}

.nav-cta.nav-line:hover {
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.55);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 860px;
  height: auto;
  overflow: hidden;
  background: #2a0d1a;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(105deg, 
      rgba(74, 40, 64, 0.75) 0%, 
      rgba(74, 40, 64, 0.55) 35%, 
      rgba(74, 40, 64, 0.15) 60%,
      rgba(74, 40, 64, 0.0) 100%);
  z-index: 2;
}

.hero-overlay-vertical {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.25) 0%,
      transparent 25%,
      transparent 75%,
      rgba(0, 0, 0, 0.45) 100%);
  z-index: 3;
}

.hero-sparkle {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  animation: twinkle 3s ease-in-out infinite;
  font-size: 1.5rem;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 3rem 5rem;
  min-height: 860px;
  display: flex;
  align-items: center;
}

.hero-text-block {
  max-width: 620px;
  color: white;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--pink-300);
  color: var(--pink-500);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 20px rgba(255, 61, 138, 0.25);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--pink-500);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  color: white;
}

.hero h1 .accent::before {
  content: '';
  position: absolute;
  inset: -4px -8px;
  background: linear-gradient(120deg, var(--pink-400), var(--pink-500));
  border-radius: 8px;
  z-index: -1;
  transform: rotate(-1deg);
  box-shadow: 0 4px 20px rgba(255, 61, 138, 0.5);
}

.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
  border-radius: 3px;
  opacity: 0.85;
}

.hero h1 .heart {
  display: inline-block;
  color: var(--pink-300);
  animation: bounce 1.5s ease-in-out infinite;
  margin-left: 0.2em;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle strong {
  color: var(--gold-light);
  font-weight: 700;
}

.support-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 15px 40px rgba(74, 40, 64, 0.3);
  border: 2px solid white;
  position: relative;
}

.support-card::before {
  content: '★ 当サイトの強み';
  position: absolute;
  top: -8px;
  left: 30px;
  background: var(--gold);
  color: white;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.support-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 16px rgba(255, 61, 138, 0.4);
}

.support-content {
  flex: 1;
}

.support-title {
  font-family: 'Kaisei Decol', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.support-title .pink {
  color: var(--pink-500);
}

.support-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 500;
}

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

.hero-btn {
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500), var(--pink-600));
  background-size: 200% 100%;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 61, 138, 0.45);
}

.hero-btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 61, 138, 0.6);
}

.hero-btn-line {
  background: #06c755;
  color: white;
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.hero-btn-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.55);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.trust-check {
  color: var(--gold);
  font-weight: 800;
}

.floating-msg {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  z-index: 10;
  background: white;
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  max-width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--pink-200);
  transform: rotate(2deg);
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}

.floating-msg::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background: white;
  border-top: 3px solid var(--pink-200);
  border-left: 3px solid var(--pink-200);
  transform: rotate(45deg);
}

.floating-msg-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.floating-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.floating-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.floating-role {
  font-size: 0.65rem;
  color: var(--pink-500);
  font-weight: 600;
}

.floating-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

.floating-text .pink {
  color: var(--pink-500);
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  font-family: 'Caveat', cursive;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
}

.scroll-hint-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, white);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.stats-bar {
  background: white;
  padding: 2rem;
  margin: -2rem 1rem 0;
  border-radius: 24px;
  position: relative;
  z-index: 20;
  box-shadow: 0 20px 50px rgba(255, 158, 196, 0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--pink-200);
}

.stat-num {
  font-family: 'Kaisei Decol', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pink-500);
  line-height: 1;
}

.stat-num .small {
  font-size: 1rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.support-feature {
  padding: 6rem 2rem 5rem;
  position: relative;
}

.support-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--gold-light);
  color: #b8860b;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.section-title {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.section-title .accent { color: var(--pink-500); }

.section-deco {
  font-family: 'Caveat', cursive;
  color: var(--pink-300);
  font-size: 1.5rem;
  margin-top: 0.3rem;
}

.support-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.support-step {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.3rem;
  text-align: center;
  position: relative;
  border: 2px solid var(--pink-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

.support-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 158, 196, 0.25);
  border-color: var(--pink-300);
}

.support-step-highlight {
  background: linear-gradient(160deg, #fff4f8 0%, #fff 60%);
  border: 2px solid var(--pink-300);
  box-shadow: 0 8px 30px rgba(255, 158, 196, 0.25);
}

.support-step-highlight::before {
  content: '★ 特に重要';
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gold);
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(245, 185, 66, 0.35);
}

.support-step-highlight .support-step-num {
  background: linear-gradient(135deg, var(--pink-500), var(--purple));
}

.support-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kaisei Decol', serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
}

.support-step-icon {
  font-size: 3.5rem;
  margin-bottom: 0.8rem;
}

.support-step-title {
  font-family: 'Kaisei Decol', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--text);
}

.support-step-desc {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

.support-cta {
  text-align: center;
  margin-top: 3rem;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 25px rgba(255, 61, 138, 0.35);
  transition: all 0.3s;
}

.support-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 61, 138, 0.5);
}

/* ========== 地域から探す ========== */
.area-search {
  padding: 5rem 2rem;
  background: white;
  margin: 0 1rem;
  border-radius: 32px;
  position: relative;
}

.area-search-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.area-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.area-tab {
  padding: 0.6rem 1.4rem;
  background: var(--pink-50);
  border: 2px solid transparent;
  color: var(--text-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.area-tab.active {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white;
  border-color: var(--pink-300);
  box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
}

.area-tab:hover:not(.active) {
  background: var(--pink-100);
  color: var(--pink-500);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  background: linear-gradient(135deg, var(--pink-50), white);
  border: 2px solid var(--pink-100);
  border-radius: 20px;
  padding: 1.3rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-300);
  box-shadow: 0 10px 25px rgba(255, 158, 196, 0.3);
}

.area-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.area-card:hover::before { opacity: 0.6; }

.area-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.area-count {
  font-size: 0.75rem;
  color: var(--pink-500);
  font-weight: 700;
  position: relative;
}

.area-count .num {
  font-family: 'Kaisei Decol', serif;
  font-size: 1.3rem;
}

.area-more {
  text-align: center;
  margin-top: 2.5rem;
}

.area-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: white;
  border: 2px solid var(--pink-300);
  color: var(--pink-500);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.area-more-btn:hover {
  background: var(--pink-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 61, 138, 0.3);
}

/* ========== 利用者の声 ========== */
.voices {
  padding: 5rem 2rem;
  position: relative;
}

.voices-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.voice-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 1.6rem 1.8rem;
  position: relative;
  border: 2px solid var(--pink-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 158, 196, 0.25);
  border-color: var(--pink-300);
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: 'Kaisei Decol', serif;
  font-size: 5.5rem;
  color: var(--pink-300);
  line-height: 1;
  opacity: 0.6;
}

.voice-rating {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.voice-text {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.voice-text .highlight {
  background: linear-gradient(transparent 65%, var(--gold-light) 65%);
  font-weight: 700;
  padding: 0 2px;
}

.voice-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--pink-200);
}

.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.voice-avatar.av-2 {
  background: linear-gradient(135deg, var(--gold), var(--pink-400));
}

.voice-avatar.av-3 {
  background: linear-gradient(135deg, var(--purple), var(--pink-500));
}

.voice-info {
  flex: 1;
}

.voice-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.voice-meta {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ========== 地域から探すセクション ========== */
.area-search {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, transparent 0%, var(--pink-50) 100%);
  position: relative;
}

.area-search-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.area-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.area-tab {
  padding: 0.6rem 1.4rem;
  background: white;
  border: 2px solid var(--pink-100);
  color: var(--text-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.area-tab.active {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white;
  border-color: var(--pink-300);
  box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
}

.area-tab:hover:not(.active) {
  background: var(--pink-100);
  color: var(--pink-500);
  border-color: var(--pink-200);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  background: white;
  border: 2px solid var(--pink-100);
  border-radius: 18px;
  padding: 1.3rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-300);
  box-shadow: 0 10px 25px rgba(255, 158, 196, 0.3);
}

.area-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.area-card:hover::before { opacity: 0.5; }

.area-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  position: relative;
  color: var(--text);
}

.area-count {
  font-size: 0.72rem;
  color: var(--pink-500);
  font-weight: 700;
  position: relative;
  letter-spacing: 0.05em;
}

.area-count .num {
  font-family: 'Kaisei Decol', serif;
  font-size: 1.25rem;
}

.area-more {
  text-align: center;
  margin-top: 2.5rem;
}

.area-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: white;
  color: var(--pink-500);
  border: 2px solid var(--pink-300);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.area-more-btn:hover {
  background: var(--pink-500);
  color: white;
  border-color: var(--pink-500);
  box-shadow: 0 8px 20px rgba(255, 61, 138, 0.3);
  transform: translateY(-2px);
}

/* ========== 利用者の声セクション ========== */
.voices {
  padding: 5rem 2rem;
  background: var(--pink-50);
  position: relative;
  overflow: hidden;
}

.voices::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.voices::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.voices-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.voice-card {
  background: white;
  border-radius: 24px;
  padding: 2.2rem 1.6rem 1.6rem;
  position: relative;
  border: 2px solid var(--pink-100);
  transition: all 0.3s;
}

.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 158, 196, 0.25);
  border-color: var(--pink-300);
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Kaisei Decol', serif;
  font-size: 5rem;
  color: var(--pink-300);
  line-height: 1;
  font-weight: 700;
}

.voice-rating {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--gold);
}

.voice-text {
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.voice-text .highlight {
  background: linear-gradient(transparent 65%, var(--gold-light) 65%);
  font-weight: 700;
  color: var(--text);
  padding: 0 2px;
}

.voice-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--pink-200);
}

.voice-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Kaisei Decol', serif;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 158, 196, 0.3);
}

.voice-avatar.av-2 {
  background: linear-gradient(135deg, var(--pink-400), var(--gold));
}

.voice-avatar.av-3 {
  background: linear-gradient(135deg, var(--purple), var(--pink-500));
}

.voice-info {
  flex: 1;
}

.voice-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.voice-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: var(--pink-100);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 130px;
  width: auto;
  max-width: 100%;
  display: inline-block;
  filter: drop-shadow(0 4px 20px rgba(255, 158, 196, 0.25));
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.05em;
}

.footer-copy a {
  color: var(--pink-300);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-copy a:hover {
  color: var(--pink-200);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .floating-msg { display: none; }
  .hero-content { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .site-header { padding: 0.6rem 0.8rem; }
  .site-logo img { height: 56px; }
  .main-nav { gap: 0; }
  .nav-cta { 
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }
  
  .hero {
    min-height: auto;
    height: auto;
  }
  
  .hero-image { background-position: center 20%; }
  
  .hero-overlay {
    background: linear-gradient(180deg, 
      rgba(74, 40, 64, 0.6) 0%, 
      rgba(74, 40, 64, 0.4) 40%,
      rgba(74, 40, 64, 0.7) 100%);
  }
  
  .hero-content { 
    padding: 3rem 1.2rem 3rem;
    min-height: auto;
  }
  
  .hero-text-block { max-width: 100%; }
  .hero h1 { font-size: 1.9rem; line-height: 1.35; }
  
  .support-card { padding: 1rem 1.2rem; gap: 0.8rem; }
  .support-icon { width: 44px; height: 44px; font-size: 1.4rem; }
  .support-title { font-size: 0.92rem; }
  .support-desc { font-size: 0.75rem; }
  
  .hero-buttons { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }
  
  .hero-trust { gap: 1rem; font-size: 0.7rem; }
  .scroll-hint { display: none; }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.5rem;
    padding: 1.5rem 1rem;
    margin: -1.5rem 0.5rem 0;
  }
  
  .stat-item:nth-child(2)::after { display: none; }
  .stat-num { font-size: 1.8rem; }
  
  .support-feature { padding: 4rem 1rem 3rem; }
  .support-flow { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .area-search, .voices { padding: 4rem 1rem; }
  .area-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .area-card { padding: 1rem 0.7rem; }
  .area-name { font-size: 0.95rem; }
  .area-tabs { gap: 0.4rem; }
  .area-tab { padding: 0.5rem 1rem; font-size: 0.78rem; }
  
  .voice-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .voice-card { padding: 2rem 1.3rem 1.4rem; }
  
  .footer-logo img { height: auto; width: 75%; max-width: 280px; }
  .site-footer { padding: 3rem 1.2rem 1.5rem; }
  
  .area-search { margin: 0 0.5rem; padding: 3.5rem 1rem; border-radius: 24px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .area-card { padding: 1rem 0.7rem; }
  .area-name { font-size: 0.95rem; }
  .area-tabs { gap: 0.4rem; }
  .area-tab { padding: 0.5rem 1rem; font-size: 0.75rem; }
  
  .voices { padding: 3.5rem 1rem; }
  .voice-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

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