/* ベースのリセットCSS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
  font-size: 16px;
}

/* 基本スタイル変数 - 配色を変更（緑・ピンク・黄色のクリーンな配色に） */
:root {
  /* 色の定義 - より女性向けの優しい配色に変更 */
  --color-primary: #4ecdc4; /* メインカラーを緑系に */
  --color-primary-dark: #33b5ac;
  --color-primary-light: #76dbd1;
  --color-secondary: #ff7285; /* アクセントカラーをピンク系に */
  --color-secondary-dark: #e65c70;
  --color-secondary-light: #ff8c9c;
  --color-accent: #ffd166; /* 強調色を黄色系に */
  --color-accent-dark: #f0c350;
  --color-accent-light: #ffe08a;
  --color-success: #2dc59e;
  --color-warning: #ffad69;
  --color-danger: #ff6b6b;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-lighter: #888888;
  --color-bg: #ffffff;
  --color-bg-light: #f9fafa;
  --color-bg-dark: #f0f5f5;
  --color-border: #e4eeee;
  
  /* グラデーション定義 */
  --gradient-primary: linear-gradient(135deg, #4ecdc4 0%, #76dbd1 100%);
  --gradient-secondary: linear-gradient(135deg, #ff7285 0%, #ff8c9c 100%);
  --gradient-accent: linear-gradient(135deg, #ffd166 0%, #ffe08a 100%);
  
  /* スペーシング */
  --spacing-xs: 0.25rem;  /* 4px */
  --spacing-sm: 0.5rem;   /* 8px */
  --spacing-md: 1rem;     /* 16px */
  --spacing-lg: 1.5rem;   /* 24px */
  --spacing-xl: 2rem;     /* 32px */
  --spacing-2xl: 3rem;    /* 48px */
  
  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(78, 205, 196, 0.08);
  --shadow-md: 0 4px 12px rgba(78, 205, 196, 0.12);
  --shadow-lg: 0 10px 20px rgba(78, 205, 196, 0.15);
  
  /* 角丸 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* コンテナ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* セクション共通 */
section {
  padding: 4rem 0;
  position: relative;
}

/* 見出しスタイル */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  line-height: 1.3;
  font-weight: 700;
}

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

.section-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.section-header.light .section-icon {
  background: white;
  color: var(--color-primary);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 500;
}

/* 強調表示 */
.highlight {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background: var(--color-primary-light);
  opacity: 0.2;
  border-radius: 3px;
}

.highlight-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  position: relative;
}

.text-highlight {
  font-weight: 700;
  color: var(--color-primary-dark);
  background-color: rgba(78, 205, 196, 0.08);
  padding: 0 4px;
  border-radius: 4px;
}

.emphasis {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.2em;
}

.highlight-amount {
  position: relative;
  color: var(--color-primary-dark);
  font-weight: 800;
  padding: 0 6px;
  background-color: rgba(78, 205, 196, 0.1);
  border-radius: 4px;
  display: inline-block;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.responsive-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: none;
  gap: 0.5rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gradient-primary);
}

.btn-secondary {
  background: var(--gradient-secondary);
}

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

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

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

/* ヘッダーセクション - 中央寄せ、画像なし */
.hero {
  background: linear-gradient(135deg, #f5fcfc 0%, #eafafa 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  background: var(--gradient-primary);
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: 10%;
  background: var(--gradient-secondary);
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -50px;
  background: var(--gradient-accent);
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 15%;
  background: var(--gradient-secondary);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

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

.hero-text {
  margin-bottom: 2rem;
}

.main-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

/* 「早い！安い！すごい！」キャッチコピーバナー */
.catchphrase-banner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.catchphrase-item {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  color: white;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-md);
}

.catchphrase-item:nth-child(1) {
  background: var(--gradient-secondary);
  transform: rotate(-3deg);
}

.catchphrase-item:nth-child(2) {
  background: var(--gradient-accent);
  color: #333;
}

.catchphrase-item:nth-child(3) {
  background: var(--gradient-primary);
  transform: rotate(3deg);
}

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

.hero-cta {
  margin-bottom: 2rem;
}

/* 短納期の強調表示 */
.short-delivery-highlight {
  background-color: rgba(78, 205, 196, 0.08);
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.delivery-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.delivery-time {
  font-size: 1.25rem;
  font-weight: 800;
}

.delivery-description {
  margin-top: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

.trust-badges {
  display: flex;
  align-items: center;
  margin: 2rem auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
}

.trust-separator {
  width: 1px;
  height: 40px;
  background-color: rgba(78, 205, 196, 0.2);
  margin: 0 0.5rem;
}

.trust-badge .count {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.trust-badge .label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.badge i {
  color: var(--color-primary);
}

/* 問題提起セクション - 見出し変更 */
.pain-points {
  background-color: var(--color-bg);
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain-point-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(78, 205, 196, 0.08);
}

.pain-point-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pain-point-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  line-height: 1.4;
}

.pain-point-card p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pain-point-example {
  background-color: rgba(78, 205, 196, 0.05);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.pain-point-example i {
  color: var(--color-primary);
  opacity: 0.5;
  margin-right: 0.5rem;
}

.pain-point-example p {
  font-style: italic;
  margin-bottom: 0;
  color: var(--color-text);
}

.problem-conclusion {
  text-align: center;
  padding: 2rem;
  background-color: rgba(78, 205, 196, 0.05);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(78, 205, 196, 0.3);
  max-width: 900px;
  margin: 3rem auto 0;
}

.problem-conclusion h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.conclusion-comparison {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.conclusion-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: white;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.conclusion-item.not-effective {
  border-left: 3px solid var(--color-danger);
}

.conclusion-item.effective {
  border-left: 3px solid var(--color-success);
}

.conclusion-item i {
  font-size: 1.25rem;
}

.conclusion-item.not-effective i {
  color: var(--color-danger);
}

.conclusion-item.effective i {
  color: var(--color-success);
}

.conclusion-separator {
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  width: 100px;
}

.conclusion-result {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

/* コスト比較セクション - 比較表の強化 */
.cost-comparison {
  background-color: var(--color-bg-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
}

.comparison-table th:first-child {
  text-align: left;
  background-color: #2d3748;
  border-top-left-radius: var(--radius-md);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

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

.comparison-table .highlight-column {
  background-color: rgba(78, 205, 196, 0.05);
  color: var(--color-primary-dark);
}

.comparison-table th.highlight-column {
  background-color: var(--color-primary-dark);
  color: white;
}

.comparison-table .total-row {
  background-color: rgba(78, 205, 196, 0.08);
  font-weight: 700;
}

.comparison-table .total-row td {
  border-bottom: none;
}

/* 評価マークのスタイル */
.rating-good, .rating-excellent, .rating-average, .rating-bad {
  display: inline-block;
  font-weight: 700;
  margin-left: 0.5rem;
}

.rating-excellent {
  color: var(--color-success);
}

.rating-good {
  color: var(--color-primary);
}

.rating-average {
  color: var(--color-warning);
}

.rating-bad {
  color: var(--color-danger);
}

.cost-saving-graph {
  text-align: center;
  margin-bottom: 3rem;
}

#cost-graph {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.graph-caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.cost-conclusion {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

/* 3つの要素セクション */
.dual-importance {
  background-color: #f8fcfc;
}

/* サービスコンセプト */
.service-concept {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-left: 5px solid var(--color-primary);
  border-right: 5px solid var(--color-primary);
}

.concept-header h3 {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
}

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

.pillar {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.marketing-pillar {
  border-top: 5px solid var(--color-primary);
}

.design-pillar {
  border-top: 5px solid var(--color-secondary);
}

.speed-pillar {
  border-top: 5px solid var(--color-accent);
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.marketing-pillar .pillar-icon {
  color: var(--color-primary);
  border: 2px solid var(--color-primary-light);
}

.design-pillar .pillar-icon {
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary-light);
}

.speed-pillar .pillar-icon {
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent-light);
}

.pillar-icon i {
  font-size: 2rem;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pillar-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pillar-feature i {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.perfect-fusion {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.fusion-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.fusion-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.perfect-fusion h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.perfect-fusion p {
  color: var(--color-text-light);
}

/* 差別化セクション */
.differentiation {
  background-color: var(--color-bg);
}

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

.comparison-block {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.comparison-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ai-only {
  background-color: #fff8f8;
  border: 1px solid #ffe0e0;
}

/* マーケター製作の落とし穴：ティール色に変更 */
.designer-only {
  background-color: #f0fffc; /* 薄いティール色背景 */
  border: 1px solid #d0efec; /* ティール色ボーダー */
}

.designer-only .block-icon {
  background-color: #4ecdc4; /* アイコン背景をティール色に */
  color: white;
}

/* 統合型アプローチ：黄色に変更 */
.our-service {
  background-color: #fff9e6; /* 薄い黄色背景 */
  border: 1px solid #ffe8b3; /* 黄色ボーダー */
}

.our-service .block-icon {
  background: var(--gradient-accent); /* 黄色のグラデーション */
  color: white;
}


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

.block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ai-only .block-icon {
  background-color: #ff7285;
  color: white;
}

/*
.designer-only .block-icon {
  background-color: #ffd166;
  color: white;
}

.our-service .block-icon {
  background: var(--gradient-primary);
  color: white;
}
*/

.comparison-block h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}

.comparison-image {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-list.negative i {
  color: #ff7285;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-list.positive i {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.real-example {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  position: relative;
  margin-top: auto;
}

.real-example.success {
  background-color: rgba(78, 205, 196, 0.1);
}

.example-label {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.real-example.success .example-label {
  background-color: var(--color-success);
}

.differentiation-conclusion {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(78, 205, 196, 0.05);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 500;
}

/* プラン吹き出しの位置調整 */
.plans-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* 各プランの吹き出しの背景色を区別 */
.plan-bubble {
  position: relative;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  font-weight: 600;
  color: var(--color-text);
  min-height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-bubble.startup {
  background-color: #f0fffc; /* 薄い緑系 */
  border: 2px solid var(--color-primary-light);
}

.plan-bubble.business {
  background-color: #fff8f8; /* 薄いピンク系 */
  border: 2px solid var(--color-secondary-light);
}

.plan-bubble.premium {
  background-color: #fff9e6; /* 薄い黄色系 */
  border: 2px solid var(--color-accent-light);
}

/* プラン名のスタイル */
.plan-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.startup .plan-name {
  color: var(--color-primary-dark);
}

.business .plan-name {
  color: var(--color-secondary);
}

.premium .plan-name {
  color: var(--color-accent-dark);
}

/* 吹き出しの三角形の色を各プランに合わせる */
.plan-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid;
}

.plan-bubble.startup::after {
  left: 25%;
  border-top-color: #f0fffc;
}

.plan-bubble.business::after {
  left: 50%;
  border-top-color: #fff8f8;
}

.plan-bubble.premium::after {
  left: 75%;
  border-top-color: #fff9e6;
}

/* テーブルヘッダー内の価格表示を白文字に変更 */
.feature-comparison-table th .price-tag {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.75rem;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* 修正回数の強調表示 */
.emphasis-cell {
  background-color: rgba(245, 247, 250, 0.5);
  font-weight: 600;
}

.modification-count {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: rgba(78, 205, 196, 0.1);
}

.highlight-unlimited {
  background-color: rgba(78, 205, 196, 0.2);
  color: var(--color-primary-dark);
  font-weight: 800;
}

/* 評価マークのスタイル調整 */
.rating-good {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.rating-average {
  color: var(--color-warning);
  font-weight: 600;
}

.rating-bad {
  color: var(--color-text-lighter);
}
.plans-feature-table {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.feature-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
}

.feature-comparison-table th,
.feature-comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.feature-comparison-table th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
}

.feature-comparison-table th:first-child {
  text-align: left;
  background-color: #2d3748;
  border-top-left-radius: var(--radius-md);
}

.feature-comparison-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.feature-comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.feature-comparison-table .highlighted-plan {
  background-color: rgba(78, 205, 196, 0.08);
}

.feature-comparison-table th.highlighted-plan {
  background-color: var(--color-primary-dark);
}

.feature-comparison-table i.bi-check-circle-fill {
  color: var(--color-success);
}

.feature-comparison-table i.bi-x-circle {
  color: var(--color-text-lighter);
}

.feature-comparison-table .price-tag {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  margin-top: 0.5rem;
}

.feature-comparison-table .cta-row td {
  padding: 1.5rem 1rem;
}

.additional-options {
  margin-top: 3rem;
}

.additional-options h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

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

.option-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border-top: 5px solid var(--color-primary);
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  background-color: rgba(78, 205, 196, 0.1);
}

.option-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.option-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.option-tag {
  display: inline-block;
  background-color: var(--color-accent);
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

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

/* 特別オファーセクション */
.special-offer {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.sparkles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.sparkle-1 {
  top: 20%;
  left: 10%;
  width: 8px;
  height: 8px;
}

.sparkle-2 {
  top: 30%;
  right: 20%;
  width: 5px;
  height: 5px;
}

.sparkle-3 {
  bottom: 40%;
  left: 30%;
  width: 7px;
  height: 7px;
}

.sparkle-4 {
  bottom: 20%;
  right: 15%;
  width: 6px;
  height: 6px;
}

.special-offer .section-title,
.special-offer .section-intro {
  color: white;
}
/* 特別オファーセクション内のハイライト調整 */
/* 特別オファーセクション内のハイライト調整 */
.special-offer .highlight {
  color: #fff; /* 白色文字 */
  background-color: rgba(255, 255, 255, 0.2); /* 白色の薄い背景 */
  padding: 0 8px;
  border-radius: 4px;
  font-weight: 800;
}

.special-offer .highlight::after {
  background: #fff; /* 白色のライン */
  opacity: 0.5; /* 不透明度上げる */
  height: 8px; /* より太く */
  bottom: 2px;
}

/* 通知バーの文字色を白に */
.offer-notification p {
  margin: 0;
  font-weight: 600;
  color: white;
}

/* 95%OFFを50%OFFに修正 */
.special-price::after {
  content: "50%OFF";
  position: absolute;
  top: -10px;
  right: -50px;
  background: var(--gradient-secondary);
  color: white;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  transform: rotate(15deg);
}

/* 保証と顧客の声の文字色を黒に変更 */
.offer-guarantee p {
  margin: 0;
  font-weight: 600;
  color: #333; /* 黒色に変更 */
}

.testimonial-quote, 
.testimonial-author {
  color: #333; /* 黒色に変更 */
}

.testimonial-quote {
  font-style: italic;
  margin: 0 0 0.5rem;
  position: relative;
  padding-left: 1rem;
}

/* ミニテスティモニアルの背景を不透明に調整して読みやすく */
.mini-testimonial {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.95); /* より不透明に */
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

/* 保証部分の背景も不透明に調整 */
.offer-guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.95); /* より不透明に */
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}

.offer-content {
  position: relative;
  z-index: 1;
}

.offer-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: white;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.offer-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  background: var(--gradient-secondary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.offer-badge .large {
  font-size: 2rem;
  margin-top: 0.5rem;
}

.offer-details {
  flex: 1;
  min-width: 300px;
}

.offer-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

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

.original-price {
  text-decoration: line-through;
  color: var(--color-text-lighter);
}

.special-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  position: relative;
}

.special-price::after {
  content: "50%OFF";
  position: absolute;
  top: -10px;
  right: -50px;
  background: var(--gradient-secondary);
  color: white;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  transform: rotate(15deg);
}

.offer-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.offer-limits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.limit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(78, 205, 196, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

.limit-item i {
  color: white;
}

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

/* 固定CTAボタン */
.fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.fixed-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

/* レスポンシブ対応 */
@media (min-width: 992px) {
  .three-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .plans-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .three-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .speed-pillar {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .plans-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .catchphrase-banner {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .catchphrase-item {
    transform: none !important;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-intro {
    font-size: 1rem;
  }
  
  .delivery-badge {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .trust-separator {
    display: none;
  }
  
  .three-pillars,
  .plans-overview {
    grid-template-columns: 1fr;
  }
  
  .offer-badge {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .catchphrase-banner {
    font-size: 1.25rem;
  }
  
  .main-title {
    font-size: 1.75rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .offer-details h3 {
    font-size: 1.25rem;
  }
  
  .special-price {
    font-size: 1.5rem;
  }
  
  .special-price::after {
    right: -40px;
    font-size: 0.625rem;
  }
}
/* ヘッダーセクション強化用CSS */
.hero-cta-subtext {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  font-weight: 500;
}

.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid rgba(78, 205, 196, 0.2);
}

.guarantee-badge i {
  color: var(--color-primary);
}

/* ライブカウンター用CSS */
.live-visitor-counter {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin: 1rem auto;
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
}

.live-visitor-counter i {
  color: #ff6b6b;
}

.live-visitor-count {
  font-weight: 700;
}

.live-visitor-animation {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff6b6b;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* FAQセクション強化用CSS */
.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-text);
  padding-left: 1.5rem;
  position: relative;
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.faq-question .bi-plus-circle {
  display: block;
}

.faq-question .bi-dash-circle {
  display: none;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 3rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(78, 205, 196, 0.08);
  border-color: var(--color-primary-light);
}

.faq-item.active .faq-question h3 {
  color: var(--color-primary-dark);
}

.faq-item.active .bi-plus-circle {
  display: none;
}

.faq-item.active .bi-dash-circle {
  display: block;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.more-questions-banner {
  margin-top: 3rem;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(78, 205, 196, 0.2);
}

.more-questions-banner i {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.more-questions-content {
  flex: 1;
}

.more-questions-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.more-questions-content p {
  margin: 0;
  color: var(--color-text-light);
}

/* CTAセクション強化用CSS */
.form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary-dark);
  text-align: center;
}

.required-mark {
  color: #ff6b6b;
  margin-left: 0.25rem;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
  outline: none;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: #aaa;
}

.privacy-policy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.privacy-policy input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  outline: none;
}

.privacy-policy label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.cta-features {
  margin-bottom: 1.5rem;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.cta-features li i {
  color: var(--color-primary);
  flex-shrink: 0;
}

.new-feature {
  position: relative;
}

.new-tag {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.guarantee {
  background-color: rgba(78, 205, 196, 0.08);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guarantee i {
  font-size: 2rem;
  color: var(--color-primary);
}

.guarantee-content h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.guarantee-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.success-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(78, 205, 196, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.badge-content {
  flex: 1;
}

.badge-content p {
  margin: 0;
  font-weight: 600;
}

.highlight-text {
  font-weight: 800;
  color: var(--color-primary-dark);
}

.limited-spots-banner {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 114, 133, 0.1);
  border: 1px dashed var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.spots-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.limited-spots-banner p {
  margin: 0;
  font-weight: 600;
}

.spots-count, .viewers-count {
  font-weight: 800;
  color: var(--color-secondary);
}

/* 特別オファーセクション強化用CSS */
.offer-notification {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.offer-notification i {
  font-size: 1.25rem;
}

.offer-notification p {
  margin: 0;
  font-weight: 600;
}

.best-choice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-accent);
  color: #333;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.best-choice-badge i {
  color: #333;
}

.offer-benefits {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.offer-benefits h4 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: var(--color-text);
}

.offer-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.offer-benefits li i {
  color: var(--color-success);
  flex-shrink: 0;
}

.new-benefit {
  position: relative;
}

.offer-guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}

.offer-guarantee i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.offer-guarantee p {
  margin: 0;
  font-weight: 600;
}

.mini-testimonial {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-quote {
  font-style: italic;
  margin: 0 0 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.testimonial-quote::before {
  content: """;
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-family: serif;
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 600;
  margin: 0;
  text-align: right;
}

/* 専門性と実績セクションのスタイル */
.credibility {
  background-color: var(--color-bg-light);
  padding: 5rem 0;
}

/* チームセクションのスタイル */
.team-section {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
}

.team-member {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border-top: 5px solid var(--color-primary);
}

.member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-primary-light);
  padding: 3px;
  background-color: white;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.team-member p {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

/* 実績セクションのスタイル */
.achievement-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

.achievement-item {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background-color: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--color-primary);
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.achievement-label {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .team-section,
  .achievement-section {
    flex-direction: column;
    align-items: center;
  }
  
  .achievement-item {
    width: 100%;
    max-width: 100%;
  }
  
  .team-member {
    padding: 1.5rem;
  }
  
  .member-img {
    width: 120px;
    height: 120px;
  }
}

/* カウントダウンタイマー用CSS */
.countdown-container {
  margin: 1.5rem 0;
}

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

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 60px;
}

.countdown-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.countdown-separator {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.countdown-urgency {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--color-secondary);
  animation: pulse 2s infinite;
  text-align: center;
}

/* 残り枠カウンター用CSS */
.spots-counter {
  margin-top: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.spots-counter-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.spots-counter-bar {
  height: 20px;
  background-color: #eaeaea;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

.spots-counter-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b 0%, #ff8e8e 100%);
  border-radius: var(--radius-full);
  width: 70%;
  transition: width 1s ease;
}

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

.spots-counter-highlight {
  color: #ff6b6b;
  font-weight: 700;
}

/* 成功事例セクション強化用CSS */
.case-study-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.after-only {
  flex: 1;
  min-width: 300px;
}

.case-details {
  flex: 1;
  min-width: 300px;
}

.case-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary-dark);
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.result-item {
  flex: 1;
  min-width: 120px;
  background-color: rgba(78, 205, 196, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

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

.result-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.result-change {
  display: inline-block;
  background-color: rgba(45, 197, 158, 0.1);
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

.testimonial {
  background-color: rgba(78, 205, 196, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial i {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.25rem;
  color: var(--color-primary);
  opacity: 0.3;
}

.testimonial p {
  padding-left: 1.5rem;
  font-style: italic;
  margin: 0;
}

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

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.client-name {
  display: block;
  font-weight: 600;
}

.client-company {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.case-study-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.prev-slide, .next-slide {
  background: white;
  border: 1px solid var(--color-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
  background: var(--color-primary-light);
  color: white;
}

.slide-indicators {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* スクロールプログレスバー用CSS */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  width: 0;
  transition: width 0.1s ease;
}

/* レスポンシブ調整 - モバイル対応強化 */
@media (max-width: 767px) {
  .hero-guarantees {
    flex-direction: column;
    align-items: center;
  }
  
  .more-questions-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .countdown-item {
    min-width: 60px;
  }
  
  .offer-notification {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .offer-box {
    flex-direction: column;
  }
  
  .offer-badge {
    margin: 0 auto 1.5rem;
  }
  
  .mini-testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-avatar {
    margin: 0 auto 1rem;
  }
  
  .testimonial-author {
    text-align: center;
  }
  
  .offer-guarantee {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee {
    flex-direction: column;
    text-align: center;
  }
  
  .success-badge {
    flex-direction: column;
    text-align: center;
  }
  
  .badge-icon {
    margin: 0 auto 1rem;
  }
  
  .limited-spots-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-box {
    flex-direction: column;
  }
  
  .cta-left, .cta-right {
    width: 100%;
  }
  
  .cta-left {
    margin-bottom: 2rem;
  }
}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 991px) {
  .offer-box {
    flex-wrap: wrap;
  }
  
  .offer-badge {
    margin: 0 auto 1.5rem;
  }
}

/* 緊急感を高めるアニメーション */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/* 競合比較表の配色を調整 - 弊社サービスを明るく、従来の制作会社を暗く */

/* 従来の制作会社の列を暗く */
.comparison-table td:nth-child(2) {
  background-color: rgba(45, 55, 72, 0.05); /* 暗めのグレー背景 */
  color: var(--color-text); /* テキスト色を通常に */
}

/* 弊社サービスの列を明るく目立たせる */
.comparison-table .highlight-column {
  background-color: #fff; /* 完全な白色背景 */
  color: var(--color-primary-dark); /* テキスト色を強調色に */
  border-left: 1px solid rgba(78, 205, 196, 0.3); /* 左側に薄い境界線 */
  border-right: 1px solid rgba(78, 205, 196, 0.3); /* 右側に薄い境界線 */
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.08); /* 軽い光彩効果 */
  position: relative; /* 位置指定 */
  font-weight: 600; /* テキストを少し太く */
}

/* 合計行の強調 */
.comparison-table .total-row .highlight-column {
  background-color: rgba(78, 205, 196, 0.08); /* 合計行は薄い色付き背景 */
  font-weight: 700; /* より太字に */
}

/* ヘッダー部分の調整 */
.comparison-table th:nth-child(2) {
  background-color: rgba(45, 55, 72, 0.9); /* 従来の制作会社ヘッダー - 暗め */
}

.comparison-table th.highlight-column {
  background-color: var(--color-primary); /* 弊社サービスヘッダー - 明るい方 */
}

/* 評価マークのコントラスト向上 */
.highlight-column .rating-good {
  color: var(--color-success); /* 成功色をより鮮やかに */
  font-weight: 800; /* より太く */
}

/* 1/10バッジのスタイル - 赤抜き白文字で目立つデザイン */
.cost-reduction-badge {
  display: inline-block;
  background-color: #ff3b30; /* 鮮やかな赤色 */
  color: white; /* 白文字 */
  font-weight: 800; /* 極太文字 */
  padding: 3px 8px; /* 内側の余白 */
  border-radius: 4px; /* 角丸 */
  margin-left: 8px; /* 左側の余白 */
  font-size: 0.9em; /* フォントサイズ */
  position: relative; /* 位置指定 */
  transform: rotate(-3deg); /* 少し傾ける */
  box-shadow: 0 2px 4px rgba(255, 59, 48, 0.4); /* 影をつける */
  animation: pulse-badge 2s infinite; /* 脈動アニメーション */
  vertical-align: middle; /* 縦方向の位置調整 */
}

/* 脈動アニメーション */
@keyframes pulse-badge {
  0% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.1);
  }
  100% {
    transform: rotate(-3deg) scale(1);
  }
}

/* ホバー時の効果 */
.cost-reduction-badge:hover {
  transform: rotate(0deg) scale(1.15);
  transition: all 0.3s ease;
}

/* フッターセクション全体のスタイル */
.footer {
  background-color: #2d3748;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* フッター上部（ロゴと連絡先） */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  flex-shrink: 0;
}

.logo-image {
  height: auto;
  max-width: 180px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-item i {
  color: var(--color-primary-light);
  font-size: 1.2rem;
}

/* フッター中部（ナビゲーション） */
.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  position: relative;
}

.footer-nav li:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* フッター下部（著作権と関連リンク） */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

.footer-links a {
  font-size: 0.875rem;
  position: relative;
}

.footer-links a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -0.9rem;
  color: rgba(255, 255, 255, 0.3);
}

/* 装飾要素 */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-nav li:not(:last-child)::after {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links a:not(:last-child)::after {
    display: none;
  }
}