/* ========================================
   CSS Variables
======================================== */
:root {
  /* Brand Colors - Primary Blue Gradients */
  --brand-primary: #1a56db;
  --brand-primary-dark: #0f3b8f;
  --brand-primary-light: #3b82f6;
  --brand-medium-blue: #2563eb;
  --brand-sky-blue: #60a5fa;
  --brand-navy: #1e40af;
  
  /* Accent Blues */
  --brand-accent: #155dfc;
  --brand-accent-light: #2b7fff;
  --brand-line: #51a2ff;
  --brand-border-light: #8ec5ff;
  --brand-bg-pale: #eff6ff;
  --brand-border-pale: #bedbff;
  
  /* Neutral Palette */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Text Colors */
  --text-heading: #101828;
  --text-body: #364153;
  --text-muted: #4a5565;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

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

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: white;
  color: var(--text-body);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ========================================
   Header
======================================== */
.eeat-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.eeat-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

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

.eeat-header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eeat-header-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.eeat-header-logo-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.eeat-header-logo-txt-main {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}

.eeat-header-logo-txt-sub {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.eeat-header-cta-btn {
  display: none;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg,rgba(0, 122, 59, 1) 0%, rgba(6, 145, 83, 1) 50%, rgba(72, 181, 42, 1) 100%);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(72, 181, 42, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.eeat-header-cta-btn:hover {
  background: linear-gradient(to right, var(--brand-primary-dark), var(--brand-primary));
  box-shadow: 0 20px 25px -5px rgba(72, 181, 42, 0.4);
}

@media (min-width: 768px) {
  .eeat-header-cta-btn {
    display: inline-flex;
  }
}

/* ========================================
   Hero Section
======================================== */
.eeat-hero {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
  overflow: hidden;
}

.eeat-hero-bg-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eeat-hero-bg-deco-circle {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
}

.eeat-hero-bg-deco-circle-1 {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
  opacity: 0.1;
}

.eeat-hero-bg-deco-circle-2 {
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-color: #22d3ee;
  opacity: 0.1;
}

.eeat-hero-bg-deco-circle-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: #60a5fa;
  opacity: 0.05;
}

.eeat-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 10;
}

.eeat-hero-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .eeat-hero-inner {
    padding: 8rem 1.5rem;
  }
  
  .eeat-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.eeat-hero-main-ttl {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-hero-main-ttl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .eeat-hero-main-ttl {
    font-size: 3.75rem;
  }
}

.eeat-hero-main-ttl-highlight-wrap {
  position: relative;
  display: inline-block;
}

.eeat-hero-main-ttl-highlight-txt {
  color: #dc2626;
}

.eeat-hero-main-ttl-highlight-line {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #ef4444, #f97316);
}

.eeat-hero-lead-txt {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .eeat-hero-lead-txt {
    font-size: 1.25rem;
  }
}

.eeat-hero-lead-txt-br {
  display: none;
}

@media (min-width: 768px) {
  .eeat-hero-lead-txt-br {
    display: block;
  }
}

.eeat-hero-lead-txt-strong {
  color: var(--gray-900);
}

.eeat-hero-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.eeat-hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid #2563eb;
  border-radius: 0.5rem;
  background-color: #eff6ff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.eeat-hero-badge-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: #dbeafe;
}

.eeat-hero-badge-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.eeat-hero-badge-item-txt {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
}

.eeat-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg,rgba(0, 122, 59, 1) 0%, rgba(6, 145, 83, 1) 50%, rgba(72, 181, 42, 1) 100%);
  color: white;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(72, 181, 42, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.eeat-hero-cta-btn:hover {
  background: linear-gradient(to right, var(--brand-medium-blue), var(--brand-sky-blue));
  box-shadow: 0 25px 50px -12px rgba(72, 181, 42, 0.6);
  transform: translateY(-2px);
}

.eeat-hero-cta-btn-icon {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Comparison */
.eeat-hero-comparison-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eeat-hero-comparison-before,
.eeat-hero-comparison-after {
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.eeat-hero-comparison-before {
  border: 2px solid var(--gray-300);
}

.eeat-hero-comparison-after {
  border: 2px solid #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.eeat-hero-comparison-before-label,
.eeat-hero-comparison-after-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.eeat-hero-comparison-before-label-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: #ef4444;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.eeat-hero-comparison-after-label-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: #2563eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.eeat-hero-comparison-before-label-txt,
.eeat-hero-comparison-after-label-txt {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

.eeat-hero-comparison-before-result,
.eeat-hero-comparison-after-result {
  border-radius: 0.5rem;
  padding: 1rem;
}

.eeat-hero-comparison-before-result {
  background-color: var(--gray-50);
  border: 2px solid var(--gray-200);
}

.eeat-hero-comparison-after-result {
  background-color: white;
  border: 2px solid #93c5fd;
}

.eeat-hero-comparison-before-result-label,
.eeat-hero-comparison-after-result-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.eeat-hero-comparison-before-result-label {
  color: var(--gray-600);
}

.eeat-hero-comparison-after-result-label {
  color: var(--gray-700);
}

.eeat-hero-comparison-before-result-content {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray-500);
}

.eeat-hero-comparison-before-result-content-main {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.eeat-hero-comparison-before-result-content-sub {
  font-size: 0.875rem;
}

.eeat-hero-comparison-after-result-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eeat-hero-comparison-after-result-list-item {
  padding: 0.5rem 0.75rem;
  background-color: #eff6ff;
  border-radius: 0.5rem;
  border: 2px solid #bfdbfe;
  transition: background-color 0.3s;
}

.eeat-hero-comparison-after-result-list-item:hover {
  background-color: #dbeafe;
}

.eeat-hero-comparison-after-result-list-item-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #2563eb;
}

.eeat-hero-comparison-after-result-list-item-txt {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
}

.eeat-hero-comparison-arrow-wrap {
  display: flex;
  justify-content: center;
}

.eeat-hero-comparison-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  border: 2px solid #1e40af;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.eeat-hero-comparison-arrow-txt {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.eeat-hero-comparison-arrow-icon {
  width: 1rem;
  height: 1rem;
  color: white;
}
/* After Section Container */
.eeat-hero-comparison-after {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 3px solid #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.eeat-hero-comparison-after-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eeat-hero-comparison-after-label-dot {
  width: 12px;
  height: 12px;
  background: #2563eb;
  border-radius: 50%;
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.eeat-hero-comparison-after-label-txt {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.eeat-hero-comparison-after-result-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
  font-weight: 600;
}

.eeat-hero-comparison-after-result-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Accordion Item */
.eeat-accordion-item {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.eeat-accordion-item:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.eeat-accordion-item.active {
  border-color: #2563eb;
  background: #eff6ff;
}

/* Accordion Header (クリック可能な部分) */
.eeat-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.eeat-accordion-header:hover {
  background: rgba(37, 99, 235, 0.05);
}

.eeat-accordion-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* Check Icon */
.eeat-hero-comparison-after-result-list-item-icon {
  width: 20px;
  height: 20px;
  color: #2563eb;
  flex-shrink: 0;
}

/* Item Text */
.eeat-hero-comparison-after-result-list-item-txt {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

/* Accordion Icon (下向き矢印) */
.eeat-accordion-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.eeat-accordion-item.active .eeat-accordion-icon {
  transform: rotate(180deg);
  color: #2563eb;
}

/* Accordion Content (展開される詳細部分) */
.eeat-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.eeat-accordion-content-inner {
  padding: 0 16px 16px 16px;
  border-top: 1px solid #e5e7eb;
  margin-top: 4px;
  padding-top: 12px;
}

/* Content Description */
.eeat-accordion-content-desc {
  font-size: 13px;
  color: #1d4ed8;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Content List */
.eeat-accordion-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eeat-accordion-content-list li {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  padding-left: 4px;
}

.eeat-accordion-content-list li::before {
  content: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .eeat-hero-comparison-after {
    padding: 16px;
  }
  
  .eeat-accordion-header {
    padding: 10px 12px;
  }
  
  .eeat-hero-comparison-after-result-list-item-txt {
    font-size: 13px;
  }
  
  .eeat-accordion-content-inner {
    padding: 0 12px 12px 12px;
  }
  
  .eeat-accordion-content-desc {
    font-size: 12px;
  }
  
  .eeat-accordion-content-list li {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .eeat-hero-comparison-after-result-list-item-icon {
    width: 18px;
    height: 18px;
  }
  
  .eeat-accordion-icon {
    width: 18px;
    height: 18px;
  }
  
  .eeat-hero-comparison-after-result-list-item-txt {
    font-size: 12px;
  }
  
  .eeat-accordion-header-left {
    gap: 8px;
  }
}

/* アニメーション効果 */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eeat-accordion-item.active .eeat-accordion-content-inner {
  animation: slideDown 0.3s ease;
}

/* ========================================
   Problem Section
======================================== */
.eeat-problem {
  background-color: white;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .eeat-problem {
    padding: 6rem 0;
  }
}

.eeat-problem-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eeat-problem-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.eeat-problem-intro-ttl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-problem-intro-ttl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .eeat-problem-intro-ttl {
    font-size: 3rem;
  }
}

.eeat-problem-intro-txt {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.eeat-problem-intro-txt-strong {
  color: var(--gray-900);
}

/* Era Change Diagram */
.eeat-problem-era-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .eeat-problem-era-change {
    gap: 3rem;
  }
}

.eeat-problem-era-change-card {
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  width: 280px;
  height: 280px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eeat-problem-era-change-card-past {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border: 2px solid var(--gray-300);
  opacity: 0.7;
}

.eeat-problem-era-change-card-now {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 4px solid #2563eb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.eeat-problem-era-change-card-now:hover {
  transform: scale(1.05);
}

.eeat-problem-era-change-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.eeat-problem-era-change-card-past .eeat-problem-era-change-card-label {
  color: var(--gray-500);
}

.eeat-problem-era-change-card-now .eeat-problem-era-change-card-label {
  color: #1d4ed8;
  font-weight: 700;
}

.eeat-problem-era-change-card-txt {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.eeat-problem-era-change-card-past .eeat-problem-era-change-card-txt {
  color: var(--gray-700);
}

.eeat-problem-era-change-card-now .eeat-problem-era-change-card-txt {
  color: #1e40af;
}

.eeat-problem-era-change-card-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.eeat-problem-era-change-card-past .eeat-problem-era-change-card-icon {
  color: var(--gray-400);
}

.eeat-problem-era-change-card-now .eeat-problem-era-change-card-icon {
  color: #2563eb;
}

.eeat-problem-era-change-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.eeat-problem-era-change-arrow-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

@media (min-width: 768px) {
  .eeat-problem-era-change-arrow-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.eeat-problem-era-change-arrow-txt {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #2563eb;
}

@media (min-width: 768px) {
  .eeat-problem-era-change-arrow-txt {
    font-size: 1.25rem;
  }
}

/* Risk List */
.eeat-problem-risk {
  margin: 0 auto 3rem;
}

.eeat-problem-risk-ttl {
  text-align: center;
}

.eeat-problem-risk-list {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .eeat-problem-risk-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eeat-problem-risk-item {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.eeat-problem-risk-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #bfdbfe;
}

.eeat-problem-risk-item-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.eeat-problem-risk-item-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #dc2626;
}

.eeat-problem-risk-item-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.eeat-problem-risk-item-txt {
  color: var(--gray-600);
  line-height: 1.75;
}

/* Identity Comparison */
.eeat-problem-identity {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border-radius: 24px;
  padding: 48px 32px;
  margin-top: 48px;
}

/* コーナー装飾 */
.eeat-problem-identity-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.eeat-problem-identity-corner-tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 4px;
}

.eeat-problem-identity-corner-tr {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 4px;
}

.eeat-problem-identity-corner-bl {
  bottom: 16px;
  left: 16px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 4px;
}

.eeat-problem-identity-corner-br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 4px;
}

/* 導入メッセージ（上部） */
.eeat-problem-identity-conclusion-box1 {
  text-align: center;
  margin-bottom: 40px;
}

.eeat-problem-identity-conclusion-box1-txt1 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 400;
}

.eeat-problem-identity-conclusion-box1-txt2 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.5;
}

.eeat-problem-identity-conclusion-box1-txt2-highlight {
  color: #fbbf24;
  font-size: 24px;
  font-weight: 900;
}

/* カードリスト */
.eeat-problem-identity-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

/* 個別カード */
.eeat-problem-identity-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border: 3px solid #e5e7eb;
  transition: all 0.3s ease;
}

.eeat-problem-identity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* カードバリエーション - ボーダー色 */
.eeat-problem-identity-card-person {
  border-color: #374151;
}

.eeat-problem-identity-card-company {
  border-color: #2563eb;
}

.eeat-problem-identity-card-website {
  border-color: #10b981;
}

/* ラベル（PERSON/COMPANY/WEBSITE） */
.eeat-problem-identity-card-label {
  display: inline-block;
  background: #374151;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* アイコンコンテナ */
.eeat-problem-identity-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 3px solid #374151;
}

.eeat-problem-identity-card-icon-company {
  border-color: #2563eb;
}

.eeat-problem-identity-card-icon-website {
  border-color: #10b981;
}

/* SVGアイコン */
.eeat-problem-identity-card-icon-svg {
  width: 40px;
  height: 40px;
  color: #374151;
}

.eeat-problem-identity-card-company .eeat-problem-identity-card-icon-svg {
  color: #2563eb;
}

.eeat-problem-identity-card-website .eeat-problem-identity-card-icon-svg {
  color: #10b981;
}

/* カードテキスト */
.eeat-problem-identity-card-lead {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 500;
}

.eeat-problem-identity-card-main {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  line-height: 1.3;
}

.eeat-problem-identity-card-main-company {
  color: #2563eb;
}

/* 結論セクション（下部） */
.eeat-problem-identity-conclusion {
  text-align: center;
}

.eeat-problem-identity-conclusion-box2 {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.eeat-problem-identity-conclusion-box2-txt {
  font-size: 18px;
  color: white;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.eeat-problem-identity-conclusion-box2-txt-highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .eeat-problem-identity {
    padding: 32px 20px;
    border-radius: 16px;
  }
  
  .eeat-problem-identity-card-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .eeat-problem-identity-conclusion-box1-txt2 {
    font-size: 18px;
  }
  
  .eeat-problem-identity-conclusion-box1-txt2-highlight {
    font-size: 20px;
  }
  
  .eeat-problem-identity-conclusion-box2 {
    padding: 24px 20px;
  }
  
  .eeat-problem-identity-conclusion-box2-txt {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .eeat-problem-identity-card {
    padding: 24px 16px;
  }
  
  .eeat-problem-identity-card-icon {
    width: 64px;
    height: 64px;
  }
  
  .eeat-problem-identity-card-icon-svg {
    width: 32px;
    height: 32px;
  }
  
  .eeat-problem-identity-card-main {
    font-size: 20px;
  }
}
/* ========================================
   Solution Section
======================================== */
.eeat-solution {
  position: relative;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-medium-blue) 50%, var(--brand-navy) 100%);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .eeat-solution {
    padding: 6rem 0;
  }
}

.eeat-solution-bg-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eeat-solution-bg-deco-circle {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.2;
}

.eeat-solution-bg-deco-circle-1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: #60a5fa;
}

.eeat-solution-bg-deco-circle-2 {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: #22d3ee;
}

.eeat-solution-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.eeat-solution-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.eeat-solution-intro-ttl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-solution-intro-ttl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .eeat-solution-intro-ttl {
    font-size: 3rem;
  }
}

.eeat-solution-intro-txt {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto;
}

.eeat-solution-intro-txt-strong {
  color: #fde047;
}

/* Concept Diagram */
.eeat-solution-concept-wrap {
  max-width: 64rem;
  margin: 0 auto 3rem;
}

.eeat-solution-concept {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .eeat-solution-concept {
    padding: 3rem;
  }
}

.eeat-solution-concept-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.eeat-solution-concept-center-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid white;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .eeat-solution-concept-center-circle {
    width: 8rem;
    height: 8rem;
    font-size: 1.5rem;
  }
}

.eeat-solution-concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .eeat-solution-concept-grid {
    gap: 3rem;
  }
}

.eeat-solution-concept-item-wrap {
  display: flex;
  justify-content: center;
}

.eeat-solution-concept-item {
  background-color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  width: 8rem;
  text-align: center;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .eeat-solution-concept-item {
    width: 10rem;
  }
}

.eeat-solution-concept-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.eeat-solution-concept-item-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  color: #2563eb;
}

.eeat-solution-concept-item-txt {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: pre-line;
}

@media (min-width: 768px) {
  .eeat-solution-concept-item-txt {
    font-size: 0.875rem;
  }
}

.eeat-solution-concept-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Service Overview */
.eeat-solution-overview-wrap {
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.eeat-solution-overview {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-left: 4px solid white;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.eeat-solution-overview-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .eeat-solution-overview-ttl {
    font-size: 1.5rem;
  }
}

.eeat-solution-overview-txt {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1.125rem;
}

.eeat-solution-overview-txt-strong1 {
  color: #fde047;
}

.eeat-solution-overview-txt-strong2 {
  color: white;
}

/* Detail Section */
.eeat-solution-detail {
  max-width: 1280px;
  margin: 0 auto;
}

.eeat-solution-detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .eeat-solution-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Registration Items */
.eeat-solution-registration {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.eeat-solution-registration-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-solution-registration-ttl {
    font-size: 1.875rem;
  }
}

.eeat-solution-registration-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eeat-solution-registration-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.eeat-solution-registration-item-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fde047;
  margin-bottom: 0.75rem;
}

.eeat-solution-registration-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eeat-solution-registration-item-list-li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.eeat-solution-registration-item-list-li-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #93c5fd;
}

.eeat-solution-registration-item-list-li-txt {
  font-size: 0.875rem;
}

/* Test Result */
.eeat-solution-test {
  display: flex;
  flex-direction: column;
}

.eeat-solution-test-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-solution-test-ttl {
    font-size: 1.875rem;
  }
}

.eeat-solution-test-result {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 2px solid #3b82f6;
  flex: 1;
}

.eeat-solution-test-result-header {
  background: linear-gradient(to right, #eff6ff, #dbeafe);
  border-bottom: 2px solid #bfdbfe;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eeat-solution-test-result-header-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.eeat-solution-test-result-header-txt {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 600;
}

.eeat-solution-test-result-body {
  padding: 1.5rem;
}

.eeat-solution-test-result-body-status {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.eeat-solution-test-result-body-status-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.eeat-solution-test-result-body-status-icon-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #2563eb;
}

.eeat-solution-test-result-body-status-txt-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.eeat-solution-test-result-body-status-txt-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.eeat-solution-test-result-body-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eeat-solution-test-result-body-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #eff6ff;
  border-radius: 0.75rem;
  border: 2px solid #bfdbfe;
  transition: background-color 0.3s;
}

.eeat-solution-test-result-body-list-item:hover {
  background-color: #dbeafe;
}

.eeat-solution-test-result-body-list-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #2563eb;
}

.eeat-solution-test-result-body-list-item-txt {
  flex: 1;
}

.eeat-solution-test-result-body-list-item-txt-type {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.eeat-solution-test-result-body-list-item-txt-detail {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* ========================================
   Features Section
======================================== */
.eeat-features {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .eeat-features {
    padding: 6rem 0;
  }
}

.eeat-features-bg-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eeat-features-bg-deco-circle {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
}

.eeat-features-bg-deco-circle-1 {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
  opacity: 0.1;
}

.eeat-features-bg-deco-circle-2 {
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-color: #22d3ee;
  opacity: 0.1;
}

.eeat-features-bg-deco-circle-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: #60a5fa;
  opacity: 0.05;
}

.eeat-features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

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

.eeat-features-intro-ttl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-features-intro-ttl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .eeat-features-intro-ttl {
    font-size: 3rem;
  }
}

.eeat-features-list {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .eeat-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.eeat-features-list-item {
  background-color: white;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  transition: all 0.3s;
}

.eeat-features-list-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.eeat-features-list-item-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.eeat-features-list-item-header-icon {
  position: relative;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--brand-accent-light) 0%, var(--brand-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eeat-features-list-item-header-icon-simple {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.eeat-features-list-item-header-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.eeat-features-list-item-header-contents {
  flex: 1;
}

.eeat-features-list-item-header-contents-num-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eeat-features-list-item-header-contents-num {
  background-color: var(--brand-accent);
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  line-height: 1;
}

.eeat-features-list-item-header-contents-num-simple {
  background-color: #2563eb;
}

.eeat-features-list-item-header-contents-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-heading);
  line-height: 1.3;
}

.eeat-features-list-item-header-contents-txt {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* Feature Diagram */
.eeat-features-list-item-diagram {
  background-color: var(--brand-bg-pale);
  border-radius: 0.5rem;
  border: 2px solid var(--brand-border-pale);
  padding: 1rem;
}

.eeat-features-list-item-diagram-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eeat-features-list-item-diagram-flow-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.eeat-features-list-item-diagram-flow-top-card {
  background-color: white;
  position: relative;
  border-radius: 0.5rem;
  height: 76px;
  border: 2px solid var(--gray-200);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.eeat-features-list-item-diagram-flow-top-card-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eeat-features-list-item-diagram-flow-top-card-icon svg {
  width: 100%;
  height: 100%;
}

.eeat-features-list-item-diagram-flow-top-card-ttl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 34px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
  white-space: nowrap;
}

.eeat-features-list-item-diagram-flow-top-card-desc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.eeat-features-list-item-diagram-flow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 1.25rem;
}

.eeat-features-list-item-diagram-flow-line-bar {
  height: 2px;
  flex: 1;
  background-color: var(--brand-line);
}

.eeat-features-list-item-diagram-flow-line-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-accent);
}

.eeat-features-list-item-diagram-flow-result {
  background-color: white;
  position: relative;
  border-radius: 0.5rem;
  height: 106px;
  border: 2px solid var(--brand-accent-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.eeat-features-list-item-diagram-flow-result-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 14px;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-accent);
}

.eeat-features-list-item-diagram-flow-result-txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 45px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  white-space: nowrap;
}

.eeat-features-list-item-diagram-flow-result-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-bg-pale);
  border: 1px solid var(--brand-border-light);
  border-radius: 0.25rem;
  padding: 0.125rem 0.5rem;
  gap: 0.25rem;
}

.eeat-features-list-item-diagram-flow-result-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.eeat-features-list-item-diagram-flow-result-badge-txt {
  font-size: 0.75rem;
  color: var(--text-heading);
}

/* Author Diagram */
.eeat-features-list-item-author-diagram {
  background-color: #eff6ff;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 2px solid #bfdbfe;
}

.eeat-features-list-item-author-diagram-before {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eeat-features-list-item-author-diagram-before-card {
  background-color: white;
  border: 2px solid var(--gray-300);
  border-radius: 0.25rem;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}

.eeat-features-list-item-author-diagram-arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.eeat-features-list-item-author-diagram-arrow svg {
  width: 1rem;
  height: 1rem;
  background-color: #2563eb;
  border-radius: 9999px;
  padding: 0.25rem;
  color: white;
}

.eeat-features-list-item-author-diagram-after {
  background-color: white;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.eeat-features-list-item-author-diagram-after-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  margin: 0 auto 0.25rem;
}

.eeat-features-list-item-author-diagram-after-ttl {
  font-size: 0.875rem;
  color: var(--gray-900);
  font-weight: 700;
}

.eeat-features-list-item-author-diagram-after-desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

/* Domain Diagram */
.eeat-features-list-item-domain-diagram {
  background-color: #eff6ff;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 2px solid #bfdbfe;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eeat-features-list-item-domain-diagram-domains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.eeat-features-list-item-domain-diagram-domains-card {
  background-color: white;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.eeat-features-list-item-domain-diagram-domains-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  margin: 0 auto 0.25rem;
}

.eeat-features-list-item-domain-diagram-domains-card-url {
  font-size: 0.75rem;
  color: var(--gray-900);
  font-weight: 600;
}

.eeat-features-list-item-domain-diagram-domains-card-desc {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.eeat-features-list-item-domain-diagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.eeat-features-list-item-domain-diagram-link-line {
  height: 2px;
  flex: 1;
  background-color: #60a5fa;
}

.eeat-features-list-item-domain-diagram-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.eeat-features-list-item-domain-diagram-result {
  background-color: white;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.eeat-features-list-item-domain-diagram-result-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  margin: 0 auto 0.25rem;
}

.eeat-features-list-item-domain-diagram-result-txt {
  font-size: 0.875rem;
  color: var(--gray-900);
  font-weight: 700;
}

/* ========================================
   Pricing Section
======================================== */
.eeat-pricing {
  position: relative;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-900) 100%);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .eeat-pricing {
    padding: 6rem 0;
  }
}

.eeat-pricing-bg-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eeat-pricing-bg-deco-circle {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.1;
}

.eeat-pricing-bg-deco-circle-1 {
  top: 33.333%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: #2563eb;
}

.eeat-pricing-bg-deco-circle-2 {
  bottom: 33.333%;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: #0891b2;
}

.eeat-pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

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

.eeat-pricing-intro-ttl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-pricing-intro-ttl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .eeat-pricing-intro-ttl {
    font-size: 3rem;
  }
}

.eeat-pricing-intro-txt {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .eeat-pricing-intro-txt {
    font-size: 1.25rem;
  }
}

.eeat-pricing-package-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .eeat-pricing-package-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.eeat-pricing-package-item {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  border: 2px solid var(--gray-200);
  position: relative;
}

.eeat-pricing-package-item:hover {
  transform: scale(1.05);
}

.eeat-pricing-package-item-featured {
  border: 4px solid #facc15;
}

.eeat-pricing-package-item-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #facc15, #eab308);
  color: var(--gray-900);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.eeat-pricing-package-item-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.eeat-pricing-package-item-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.eeat-pricing-package-item-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.eeat-pricing-package-item-section {
  margin-bottom: 1.5rem;
}

.eeat-pricing-package-item-section:last-child {
  margin-bottom: 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-100);
}

.eeat-pricing-package-item-section-ttl {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eeat-pricing-package-item-section-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eeat-pricing-package-item-section-list-li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.eeat-pricing-package-item-section-list-li-check {
  color: var(--gray-600);
}

.eeat-pricing-package-item-section-list-li-check svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Pricing Fee */
.eeat-pricing-fee-list {
  max-width: 96rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eeat-pricing-fee-item {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.eeat-pricing-fee-item-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .eeat-pricing-fee-item-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.eeat-pricing-fee-item-price-wrap {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .eeat-pricing-fee-item-price-wrap {
    width: 33.333%;
  }
}

.eeat-pricing-fee-item-price-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.eeat-pricing-fee-item-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.eeat-pricing-fee-item-price-num {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
}

.eeat-pricing-fee-item-price-unit {
  font-size: 1.5rem;
  color: var(--gray-600);
}

.eeat-pricing-fee-item-price-estimate {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
}

.eeat-pricing-fee-item-price-tax {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.eeat-pricing-fee-item-price-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.eeat-pricing-fee-item-price-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: 1rem;
}

.eeat-pricing-fee-item-feature-grid,
.eeat-pricing-fee-item-factor-grid {
  display: grid;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 640px) {
  .eeat-pricing-fee-item-feature-grid,
  .eeat-pricing-fee-item-factor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .eeat-pricing-fee-item-feature-grid,
  .eeat-pricing-fee-item-factor-grid {
    width: 66.666%;
  }
}

.eeat-pricing-fee-item-feature,
.eeat-pricing-fee-item-factor {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.eeat-pricing-fee-item-feature-icon,
.eeat-pricing-fee-item-factor-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eeat-pricing-fee-item-factor-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.eeat-pricing-fee-item-feature-icon svg,
.eeat-pricing-fee-item-factor-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.eeat-pricing-fee-item-factor-icon svg {
  color: white;
}

.eeat-pricing-fee-item-feature-txt {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
}

.eeat-pricing-fee-item-factor-txt-ttl {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.eeat-pricing-fee-item-factor-txt-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ========================================
   FAQ Section
======================================== */
.eeat-faq {
  background: linear-gradient(to bottom, var(--gray-100), var(--gray-200));
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .eeat-faq {
    padding: 6rem 0;
  }
}

.eeat-faq-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.eeat-faq-intro-ttl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .eeat-faq-intro-ttl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .eeat-faq-intro-ttl {
    font-size: 3rem;
  }
}

.eeat-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eeat-faq-item {
  background-color: white;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  transition: all 0.3s;
}

.eeat-faq-item-active {
  border-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.eeat-faq-item-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
}

.eeat-faq-item-q:hover .eeat-faq-item-q-txt {
  color: #2563eb;
}

.eeat-faq-item-q-txt {
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.3s;
  flex: 1;
  padding-right: 1rem;
}

.eeat-faq-item-q-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.eeat-faq-item-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eeat-faq-item-a-txt {
  color: var(--gray-600);
  padding-bottom: 1.25rem;
  line-height: 1.75;
}

/* ========================================
   CTA Section
======================================== */
.eeat-cta {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-900) 100%);
  color: white;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .eeat-cta {
    padding: 6rem 0;
  }
}

.eeat-cta-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eeat-cta-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.eeat-cta-intro-ttl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

@media (min-width: 768px) {
  .eeat-cta-intro-ttl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .eeat-cta-intro-ttl {
    font-size: 3rem;
  }
}

.eeat-cta-intro-txt {
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .eeat-cta-intro-txt {
    font-size: 1.25rem;
  }
}

.eeat-cta-intro-txt-br {
  display: none;
}

@media (min-width: 768px) {
  .eeat-cta-intro-txt-br {
    display: block;
  }
}

.eeat-cta-intro-txt-strong {
  color: white;
}

/* Benefits */
.eeat-cta-benefit {
  background-color: var(--brand-primary);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.eeat-cta-benefit-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

.eeat-cta-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eeat-cta-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.eeat-cta-benefit-item-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.eeat-cta-benefit-item-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-medium-blue);
}

.eeat-cta-benefit-item-txt {
  font-size: 1.125rem;
  color: white;
}

/* Form */
.eeat-cta-form-wrap {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.eeat-cta-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eeat-cta-form-field {
  display: flex;
  flex-direction: column;
}

.eeat-cta-form-label {
  display: block;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.eeat-cta-form-label-required {
  color: #ef4444;
}

.eeat-cta-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.eeat-cta-form-input:focus {
  outline: none;
  ring: 2px;
  ring-color: #3b82f6;
  border-color: transparent;
}

.eeat-cta-form-btn {
  width: 100%;
  font-size: 1.125rem;
  padding: 1.5rem;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-primary-light));
  color: white;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.eeat-cta-form-btn:hover {
  background: linear-gradient(to right, var(--brand-primary-dark), var(--brand-primary));
  box-shadow: 0 25px 50px -12px rgba(96, 165, 250, 0.4);
}

.eeat-cta-form-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.eeat-cta-form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Success Message */
.eeat-cta-success {
  text-align: center;
  padding: 3rem 0;
}

.eeat-cta-success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.eeat-cta-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.eeat-cta-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #2563eb;
}

.eeat-cta-success-ttl {
  font-size: 1.5rem;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.eeat-cta-success-txt {
  color: var(--gray-600);
  line-height: 1.75;
}

.eeat-cta-form-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 1.5rem;
}

/* ========================================
   Footer
======================================== */
.eeat-footer {
  background-color: var(--gray-900);
  color: white;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .eeat-footer {
    padding: 4rem 0;
  }
}

.eeat-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eeat-footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .eeat-footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eeat-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.eeat-footer-brand-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.eeat-footer-brand-logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.eeat-footer-brand-logo-txt {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.eeat-footer-brand-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.eeat-footer-section-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eeat-footer-section-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eeat-footer-contact {
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eeat-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eeat-footer-contact-item-icon {
  width: 1rem;
  height: 1rem;
}

.eeat-footer-contact-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

.eeat-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .eeat-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.eeat-footer-bottom-copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.eeat-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.eeat-footer-bottom-links-item {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s;
}

.eeat-footer-bottom-links-item:hover {
  color: white;
}
/* フォーム全体のコンテナ */
#contact_form.form {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  padding: 3rem 1rem;
  position: relative;
}

.contact_page_con_wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* ヘッダーセクション */
.contact_page_con_txt_wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact_page_con_mail {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact_page_con_mail img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.contact_page_con_ttl {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact_page_con_txt {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* フォームラッパー */
.contact_wrap {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

/* Contact Form 7 のフォーム */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 各フォームフィールド */
.wpcf7-form > p {
  margin: 0;
}

/* ラベルスタイル */
.wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* 入力フィールド共通スタイル */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #111827;
  background-color: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

/* プレースホルダー */
.wpcf7-form-control::placeholder {
  color: #9ca3af;
}

/* フォーカス時 */
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: #ffffff;
}

/* ホバー時 */
.wpcf7-form-control.wpcf7-text:hover,
.wpcf7-form-control.wpcf7-email:hover,
.wpcf7-form-control.wpcf7-tel:hover,
.wpcf7-form-control.wpcf7-textarea:hover {
  border-color: #9ca3af;
}

/* エラー時 */
.wpcf7-form-control.wpcf7-not-valid {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.wpcf7-form-control.wpcf7-not-valid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #ef4444;
  font-weight: 500;
}

/* 個人情報テキスト */
.wpcf7-form > p .bold {
  display: block;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

/* 個人情報本文 */
.wpcf7-form > p:nth-last-of-type(3) {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border-left: 4px solid #2563eb;
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.75;
}

.wpcf7-form > p:nth-last-of-type(3) a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.wpcf7-form > p:nth-last-of-type(3) a:hover {
  color: #1d4ed8;
}

/* チェックボックス */
.wpcf7-acceptance {
  display: block;
  margin: 1rem 0;
}

.wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9375rem;
  gap: 0.75rem;
  margin: 0;
}

/* カスタムチェックボックス */
.wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: all 0.3s ease;
}

.wpcf7-list-item input[type="checkbox"]:hover {
  border-color: #9ca3af;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}

.wpcf7-list-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.75rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.wpcf7-list-item input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wpcf7-list-item-label {
  color: #374151;
  line-height: 1.6;
}

/* 送信ボタン */
.wpcf7-form-control.wpcf7-submit {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: white;
  background: rgba(0, 122, 59, 1);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: rgba(0, 122, 59, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.wpcf7-form-control.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}

.wpcf7-form-control.wpcf7-submit:disabled,
.wpcf7-form-control.wpcf7-submit.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* スピナー（送信中） */
.wpcf7-spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.75rem;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* レスポンスメッセージ */
.wpcf7-response-output {
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 0;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
}

/* 成功メッセージ */
.wpcf7-mail-sent-ok {
  background-color: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

/* エラーメッセージ */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background-color: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
}

/* スパム判定メッセージ */
.wpcf7-spam-blocked {
  background-color: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}

/* 無効な入力メッセージ */
.wpcf7-acceptance-missing {
  background-color: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}

/* Hidden要素 */
.wpcf7-form input[type="hidden"],
.wpcf7-pum,
.screen-reader-response {
  display: none !important;
}

/* Tablet and up */
@media (min-width: 640px) {
  #contact_form.form {
    padding: 4rem 1.5rem;
  }
  
  .contact_page_con_mail {
    width: 96px;
    height: 96px;
    margin-bottom: 1.75rem;
  }
  
  .contact_page_con_mail img {
    width: 56px;
    height: 56px;
  }
  
  .contact_page_con_ttl {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .contact_page_con_txt {
    font-size: 1rem;
  }
  
  .contact_wrap {
    padding: 2.5rem 2rem;
  }
  
  .wpcf7-form {
    gap: 1.75rem;
  }
  
  .wpcf7-form label {
    font-size: 0.9375rem;
  }
  
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-email,
  .wpcf7-form-control.wpcf7-tel,
  .wpcf7-form-control.wpcf7-textarea {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
  }
  
  .wpcf7-form > p:nth-last-of-type(3) {
    padding: 1.5rem;
    font-size: 0.875rem;
  }
  
  .wpcf7-list-item label {
    font-size: 1rem;
  }
  
  .wpcf7-form-control.wpcf7-submit {
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
  }
  
  .wpcf7-response-output {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  #contact_form.form {
    padding: 5rem 1.5rem;
  }
  
  .contact_page_con_wrap {
    max-width: 800px;
  }
  
  .contact_page_con_txt_wrap {
    margin-bottom: 3rem;
  }
  
  .contact_page_con_ttl {
    font-size: 2.25rem;
  }
  
  .contact_wrap {
    padding: 3rem 2.5rem;
  }
  
  .wpcf7-form {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  #contact_form.form {
    padding: 6rem 1.5rem;
  }
  
  .contact_page_con_wrap {
    max-width: 900px;
  }
  
  .contact_wrap {
    padding: 3.5rem 3rem;
  }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ダークモード対応（オプション） */
@media (prefers-color-scheme: dark) {
  /* 必要に応じてダークモードスタイルを追加 */
}

/* プリント時のスタイル調整 */
@media print {
  #contact_form.form {
    background: white;
    box-shadow: none;
  }
  
  .contact_wrap {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .wpcf7-form-control.wpcf7-submit {
    display: none;
  }
}

/* フォーカス可視化（キーボードナビゲーション時） */
.wpcf7-form-control:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

/* タッチデバイス対応 */
@media (hover: none) and (pointer: coarse) {
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-email,
  .wpcf7-form-control.wpcf7-tel,
  .wpcf7-form-control.wpcf7-textarea {
    font-size: 16px; /* iOS Safari のズーム防止 */
  }
  
  .wpcf7-form-control.wpcf7-submit {
    min-height: 48px; /* タッチターゲットサイズ確保 */
  }
  
  .wpcf7-list-item input[type="checkbox"] {
    min-width: 24px;
    min-height: 24px;
  }
}

/* Internet Explorer 11 対応（必要に応じて） */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wpcf7-form-control.wpcf7-submit {
    background: rgba(0, 122, 59, 1);
  }
}

/* 入力補完のスタイル調整 */
.wpcf7-form-control:-webkit-autofill,
.wpcf7-form-control:-webkit-autofill:hover,
.wpcf7-form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px white inset;
  -webkit-text-fill-color: #111827;
  transition: background-color 5000s ease-in-out 0s;
}

/* フォーム送信後の成功メッセージアニメーション */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpcf7-response-output {
  animation: slideDown 0.4s ease-out;
}

/* 必須項目インジケーター（オプション） */
.wpcf7-form label::after {
  content: '';
  /* 必須マークを追加する場合はここで設定 */
}

/* フィールドグループ化（オプション） */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* 送信ボタンのアイコン追加（オプション） */
.wpcf7-form-control.wpcf7-submit::after {
  content: '→';
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.wpcf7-form-control.wpcf7-submit:hover::after {
  transform: translateX(4px);
}