/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ユーティリティクラス */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-primary {
  color: #7e22ce; /* Purple-700 */
}

.bold {
  font-weight: 700;
}

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

.mt-12 {
  margin-top: 3rem;
}

.relative {
  position: relative;
}

.ml-2 {
  margin-left: 0.5rem;
}

.site-wrapper {
  overflow: hidden;
  position: relative;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 0.5s forwards;
}

.slide-in-right {
  animation: slideInRight 0.5s forwards;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: #7e22ce;
  color: white;
}

.btn-primary:hover {
  background-color: #6b21a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: #333;
}

.btn-outline:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.125rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* バッジ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #7e22ce;
  color: white;
  letter-spacing: 0.02em;
}

/* ヘッダー */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.desktop-nav {
  display: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-left: 1.75rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #7e22ce;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #7e22ce;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: inline-flex;
}

.menu-button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ヒーローセクション (シンプルデザイン) */
.hero-section {
  padding: 5rem 0;
  background-color: #f8fafc;
  position: relative;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}

.hero-text {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: #f3e8ff;
  color: #7e22ce;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

/* メインビジュアル（ヒーローセクション）の見出しサイズ最適化 */
.hero-title {
  font-size: 2.5rem; /* モバイル向けに最適化 */
  font-weight: 900;
  line-height: 1.2;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.text-accent {
  color: #7e22ce;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
  max-width: 36rem;
  margin: 0 auto;
}

/* 実績スタッツ */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  transition: transform 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: #7e22ce;
  line-height: 1;
}

.hero-stat-unit {
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* CTA部分 */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-link {
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.hero-link:hover {
  color: #7e22ce;
  background-color: #f1f5f9;
}

.trust-logos {
  text-align: center;
}

.trust-text {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.client-logo {
  width: 6rem;
  height: 3rem;
  background-color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-2px);
}

.logo-placeholder {
  font-size: 0.75rem;
  color: #94a3b8;
}

.hero-image-container {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

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

/* 課題診断セクション */
.diagnosis-section {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.diagnosis-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #7e22ce;
}

.section-content {
  max-width: 48rem;
  margin: 0 auto;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.title-accent {
  color: #7e22ce;
}

.checklist-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.checklist-item:hover {
  background-color: #f8fafc;
  transform: translateX(5px);
}

.checkbox {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.25rem;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  margin-top: 0.125rem;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox.checked {
  background-color: #7e22ce;
  border-color: #7e22ce;
}

.checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.checklist-cta {
  padding-top: 2rem;
  text-align: center;
}

.cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

/* 社会的証明セクション */
.testimonial-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 3.5rem;
  font-size: 1.125rem;
}

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

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  height: 14rem;
  position: relative;
  overflow: hidden;
}

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

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

.testimonial-content {
  padding: 1.75rem;
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.75rem 0;
  line-height: 1.4;
}

.testimonial-name {
  color: #64748b;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* サービス紹介セクション */
.services-section {
  padding: 5rem 0;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: #f3e8ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #7e22ce;
  font-size: 1.25rem;
}

.service-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-features li {
  display: flex;
  gap: 0.75rem;
}

.service-features i {
  color: #7e22ce;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* 比較セクション */
.comparison-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

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

.comparison-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-negative {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
}

.comparison-positive {
  background-color: #ecfdf5;
  border: 1px solid #d1fae5;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-icon.negative {
  background-color: #ef4444;
  color: white;
}

.comparison-icon.positive {
  background-color: #10b981;
  color: white;
}

.comparison-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e293b;
}

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

.comparison-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1.0625rem;
}

.negative-mark {
  color: #ef4444;
  font-weight: 700;
}

.positive-mark {
  color: #10b981;
  font-weight: 700;
}

.data-visualization {
  background-color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.data-title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #1e293b;
}

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

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7e22ce;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.percent, .times {
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* 担当者セクション */
.consultant-section {
  padding: 5rem 0;
  background-color: #f8fafc;
  position: relative;
}

.consultant-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #7e22ce, #9333ea);
}

.consultant-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.8;
}

.consultant-profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.consultant-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.consultant-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.consultant-profile:hover .consultant-image img {
  transform: scale(1.03);
}

.consultant-info {
  padding: 2rem;
}

.consultant-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.consultant-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 0.75rem;
}

.consultant-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.consultant-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
  color: #334155;
}

.consultant-details i {
  color: #7e22ce;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.consultant-quote {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
}

.quote-icon {
  color: #7e22ce;
  font-size: 1.5rem;
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.consultant-quote p {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  padding-left: 1.5rem;
}

/* 信頼性強化セクション */
.trust-section {
  padding: 5rem 0;
  background-color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-card {
  background-color: #f8fafc;
  padding: 1.75rem;
  border-radius: 1rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.75rem;
  background-color: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7e22ce;
  font-size: 1.5rem;
}

.trust-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.trust-description {
  color: #64748b;
  font-size: 1.0625rem;
}

.guarantee-badge {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  background-color: #fef3c7;
  color: #92400e;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.guarantee-badge i {
  margin-right: 0.5rem;
  color: #d97706;
}

/* 料金プランセクション */
.pricing-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border-color: #7e22ce;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #7e22ce;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-bottom-left-radius: 0.75rem;
  z-index: 10;
}

.pricing-header {
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.pricing-price {
  margin-bottom: 1rem;
}

.price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
}

.period {
  color: #64748b;
  font-size: 1.125rem;
}

.pricing-initial {
  color: #64748b;
  font-size: 1.0625rem;
}

.pricing-body {
  padding: 2rem;
}

.pricing-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #1e293b;
}

.pricing-features {
  margin-bottom: 1.75rem;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.pricing-features i {
  color: #7e22ce;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pricing-roi {
  background-color: #f8fafc;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.75rem;
  border: 1px solid #e2e8f0;
}

.pricing-roi p {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.pricing-notes {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #64748b;
}

.pricing-notes p {
  margin-bottom: 0.5rem;
}

/* 緊急性・限定性セクション */
.urgency-section {
  padding: 4rem 0;
  background-color: #7e22ce;
  color: white;
  position: relative;
}

.urgency-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.urgency-title {
  font-size: 2rem;
  font-weight: 800;
}

.urgency-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
}

.highlight {
  color: #fcd34d;
  font-weight: 700;
}

.urgency-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-text {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.countdown-item {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
  min-width: 4rem;
}

.countdown-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.calendar-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.calendar-content i {
  font-size: 2rem;
  color: #fcd34d;
}

.calendar-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.calendar-note {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* CTA強化セクション */
.cta-section {
  padding: 5rem 0;
  background-color: #fff;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.bonus-box {
  background-color: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bonus-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f59e0b;
  color: white;
  font-weight: 600;
  padding: 0.375rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.bonus-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: #78350f;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.bonus-note {
  font-size: 0.9375rem;
  color: #92400e;
}

.main-cta {
  text-align: center;
}

.cta-lead {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.contact-info {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  color: #64748b;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  font-size: 1.0625rem;
}

.contact-item i {
  color: #7e22ce;
}

/* サポート体制セクション */
.support-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.support-card {
  background-color: white;
  padding: 1.75rem;
  border-radius: 1rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.75rem;
  background-color: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7e22ce;
  font-size: 1.5rem;
}

.support-text {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1e293b;
}

/* FAQ セクション */
.faq-section {
  padding: 5rem 0;
  background-color: #fff;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1e293b;
  font-size: 1.125rem;
}

.faq-question i {
  color: #7e22ce;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  border-bottom: 1px solid #e2e8f0;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #64748b;
  font-size: 1.0625rem;
}

.faq-item.active .faq-answer {
  padding: 1.25rem 1.5rem;
  max-height: 500px;
}

/* 会社情報・信頼性セクション */
.company-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.company-card {
  max-width: 36rem;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.company-info {
  margin-bottom: 2rem;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.info-label {
  font-weight: 600;
  color: #1e293b;
}

.info-value {
  color: #64748b;
}

.media-section {
  margin-top: 2rem;
}

.media-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.media-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.media-logo {
  width: 6rem;
  height: 3rem;
  background-color: #f1f5f9;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.media-logo:hover {
  transform: translateY(-2px);
}

.company-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9375rem;
}

.company-link {
  color: #64748b;
  transition: color 0.3s ease;
}

.company-link:hover {
  color: #7e22ce;
}

/* フッターCTA */
.footer-cta {
  padding: 5rem 0;
  background-color: #7e22ce;
  color: white;
}

.footer-cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-cta-title {
  font-size: 2rem;
  font-weight: 800;
}

.footer-cta-text {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* フッターCTAのボタンを目立たせる */
.footer-cta .btn-primary {
  background-color: #ffffff;
  color: #7e22ce;
  border: 2px solid #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.footer-cta .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* フッター */
.site-footer {
  padding: 3rem 0;
  background-color: #1e293b;
  color: #94a3b8;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  text-align: center;
}

.footer-logo .logo {
  color: white;
  margin-bottom: 0.75rem;
}

.copyright {
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

/* モバイルナビゲーション */
.mobile-visible {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 40;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.mobile-visible .nav-link {
  margin: 0.75rem 0;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.mobile-visible .nav-link:hover {
  background-color: #f8fafc;
}

/* 予約フォーム */
.booking-form {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 36rem;
  margin: 0 auto;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  text-align: center;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #7e22ce;
  box-shadow: 0 0 0 2px rgba(126, 34, 206, 0.1);
}

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  min-height: 6rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #7e22ce;
  box-shadow: 0 0 0 2px rgba(126, 34, 206, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.9375rem;
  color: #64748b;
}

.form-submit {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }

  .desktop-only {
    display: inline-flex;
  }

  .mobile-only {
    display: none;
  }

  .hero-section .container {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
    text-align: left;
  }

  .hero-text {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0;
  }

  .hero-image-container {
    flex: 1;
  }

  .hero-title {
    font-size: 3.75rem; /* タブレット向けに最適化 */
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-info {
    flex-direction: row;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-logo {
    text-align: left;
  }
  
  .consultant-profile {
    flex-direction: row;
    align-items: stretch;
  }
  
  .consultant-image {
    width: 40%;
    height: auto;
  }
  
  .consultant-image img {
    height: 100%;
    object-fit: cover;
  }
  
  .consultant-info {
    width: 60%;
    display: flex;
    flex-direction: column;
  }
  
  .consultant-quote {
    margin-top: auto;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: 2.5rem; /* デスクトップ向けに最適化 */
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* モバイル最適化のための追加スタイル */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem; /* モバイル向けに最適化 */
  }

  .checklist-card {
    box-shadow: none;
    padding: 0;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .urgency-title {
    font-size: 1.5rem;
  }
  
  .urgency-subtitle {
    font-size: 1.25rem;
  }
  
  .countdown-timer {
    gap: 0.5rem;
  }
  
  .countdown-item {
    min-width: 3.5rem;
    padding: 0.5rem;
  }
  
  .countdown-value {
    font-size: 1.5rem;
  }
  
  .calendar-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .bonus-subtitle {
    font-size: 1.25rem;
  }
  
  .footer-cta-title {
    font-size: 1.5rem;
  }
  
  .footer-cta-text {
    font-size: 1.125rem;
  }
  
  .btn-xl {
    padding: 0.875rem 1.5rem;
    font-size: 1.125rem;
  }
  
  .consultant-intro br {
    display: none;
  }
  
  .consultant-name {
    font-size: 1.25rem;
  }
  
  .consultant-title {
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
  }
  
  .consultant-quote p br {
    display: none;
  }
}

/* アニメーション効果の追加 */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-primary:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(252, 211, 77, 0.3);
  z-index: -1;
  transform: rotate(-2deg);
}

/* カウントダウンタイマーのアニメーション */
.countdown-value {
  position: relative;
  overflow: hidden;
}

.countdown-value.flip {
  animation: flip 0.5s ease-in-out;
}

@keyframes flip {
  0% {
    transform: rotateX(0);
  }
  50% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0);
  }
}

/* チェックボックスのアニメーション */
.checkbox.checked {
  animation: pulse 0.3s ease-in-out;
}

/* スクロールアニメーション用のクラス */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 担当者セクション（新デザイン） */
.consultant-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.consultant-profile-card {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultant-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.consultant-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
  position: relative;
}

.consultant-image-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.consultant-profile-card:hover .consultant-image {
  transform: scale(1.05);
}

.consultant-name-title {
  text-align: center;
  z-index: 1;
}

.consultant-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.consultant-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #7e22ce;
  padding: 0.25rem 1rem;
  background-color: rgba(126, 34, 206, 0.1);
  border-radius: 9999px;
  display: inline-block;
}

.consultant-body {
  padding: 2rem;
}

.consultant-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.consultant-stat {
  padding: 1rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.consultant-stat:hover {
  transform: translateY(-3px);
  background-color: #f3e8ff;
}

.consultant-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7e22ce;
  margin-bottom: 0.25rem;
}

.consultant-stat .stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

.consultant-details {
  margin-bottom: 2rem;
}

.details-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.details-heading i {
  color: #7e22ce;
}

.consultant-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.detail-item:hover {
  transform: translateX(5px);
  background-color: #f3e8ff;
}

.detail-icon {
  width: 2rem;
  height: 2rem;
  background-color: #f3e8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e22ce;
  flex-shrink: 0;
}

.detail-content {
  flex: 1;
}

.detail-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.detail-description {
  font-size: 0.9375rem;
  color: #64748b;
}

.consultant-quote {
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  border-left: 4px solid #7e22ce;
}

.consultant-quote .quote-icon {
  color: #7e22ce;
  font-size: 1.5rem;
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.consultant-quote p {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  padding-left: 2rem;
}

.consultant-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.certification-badge:hover {
  background-color: #f3e8ff;
  color: #7e22ce;
  transform: translateY(-2px);
}

.certification-badge i {
  color: #7e22ce;
}

.consultant-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.action-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-button.primary {
  background-color: #7e22ce;
  color: white;
}

.action-button.primary:hover {
  background-color: #6b21a8;
  transform: translateY(-2px);
}

.action-button.secondary {
  background-color: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

.action-button.secondary:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .consultant-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .consultant-header {
    flex-direction: row;
    justify-content: flex-start;
    padding: 3rem;
  }
  
  .consultant-image-wrapper {
    margin-bottom: 0;
    margin-right: 2.5rem;
  }
  
  .consultant-name-title {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .consultant-header {
    padding: 2rem 1.5rem;
  }
  
  .consultant-image-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .consultant-name {
    font-size: 1.5rem;
  }
  
  .consultant-body {
    padding: 1.5rem;
  }
  
  .consultant-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .consultant-stat .stat-value {
    font-size: 1.25rem;
  }
  
  .consultant-stat .stat-label {
    font-size: 0.75rem;
  }
  
  .consultant-actions {
    flex-direction: column;
  }
}

  /* LINEボタンのスタイル */
.action-button.secondary.line-button {
  background-color: #06C755; /* LINEの公式ブランドカラー */
  color: white;
  border: none;
}

.action-button.secondary.line-button:hover {
  background-color: #05a648; /* ホバー時は少し暗めの緑色 */
  color: white;
  transform: translateY(-2px);
}

.action-button.secondary.line-button i {
  color: white;
}

/* LINEボタンのスタイル */
.btn-line {
  background-color: #06C755; /* LINEの公式ブランドカラー */
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-line:hover {
  background-color: #05a648; /* ホバー時は少し暗めの緑色 */
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mr-2 {
  margin-right: 0.5rem;
}

/* ヒーローセクションのCTAボタン配置 */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* フッターCTAのボタン配置 */
.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* フッターCTAのLINEボタン特別スタイル */
.footer-cta .btn-line {
  background-color: white;
  color: #06C755;
  border: 2px solid white;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-cta .btn-line:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.footer-cta .btn-line:hover i {
  color: white;
}

.footer-cta .btn-line i {
  color: #06C755;
}

.caption {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* プロフェッショナル解決セクション */
.solution-section {
  padding: 5rem 0;
  background-color: #f8fafc;
  position: relative;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

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

.solution-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

.solution-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f3e8ff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7e22ce;
  font-size: 1.75rem;
}

.solution-content {
  flex: 1;
}

.solution-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.solution-description {
  color: #64748b;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.solution-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .solution-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .solution-icon {
    margin-bottom: 1rem;
  }
  
  .solution-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .solution-title {
    font-size: 1.75rem;
  }
  
  .solution-card-title {
    font-size: 1.125rem;
  }
}


/* 導入プロセスセクション */
.implementation-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.process-diagram {
  margin: 3rem 0;
  text-align: center;
}

.process-diagram img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  background-color: #7e22ce;
  color: white;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  font-size: 1.125rem;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #64748b;
  margin-bottom: 0.75rem;
}

.step-time {
  display: inline-block;
  background-color: #f3e8ff;
  color: #7e22ce;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.process-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
}

.btn-primary {
  background-color: #7e22ce;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #6b21a8;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #e2e8f0;
  color: #1e293b;
}

.btn-outline:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

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

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .step-title {
    font-size: 1.25rem;
  }
}