/* 紫色のグラデーションを変数として追加 */
:root {
  --primary-color: #fbb2df;
  --primary-light: #ffd6ef;
  --primary-dark: #ff85c8;
  --secondary-color: #f8e8f3;
  --accent-color: #ff85c8;
  --accent-color-dark: #ff4aad; /* 濃いピンク色を追加 */
  --accent-gradient: linear-gradient(135deg, #ff85c8, #fbb2df);
  --accent-gradient-hover: linear-gradient(135deg, #ff6bb3, #ff9ed7);
  --purple-color: #9b59b6;
  --purple-light: #da70d6;
  --purple-gradient: linear-gradient(135deg, #da70d6, #9b59b6);
  --mixed-gradient: linear-gradient(135deg, #ff85c8, #da70d6, #9b59b6);
  --text-color: #333;
  --light-text: #666;
  --white: #fff;
  --border-color: #ddd;
  --section-padding: 60px 0;
  --box_shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --transition: all 0.3s ease;

  /* Card Colors */
  --nano-gradient: linear-gradient(135deg, #ffd6ef, #fbb2df);
  --micro-gradient: linear-gradient(135deg, #ff85c8, #ff9ed7);
  --top-gradient: linear-gradient(135deg, #ffb6c1, #ff69b4);
  --mega-gradient: linear-gradient(135deg, #da70d6, #9b59b6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

/* 禁則処理用のスタイルを追加 */
span {
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible;
}

/* Typography */
h1,
h2,
h3 {
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  color: var(--accent-color);
}

/* セクションタイトルを派手に */
h2 {
  font-size: 2.2rem;
  color: var(--accent-color-dark); /* 濃いピンク色に変更 */
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: none; /* テキストシャドウを削除 */
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(255, 133, 200, 0.5);
}

.section.alt-section h2::after {
  background: var(--accent-gradient);
}

/* 他のh3要素のグロー効果も削除 */
h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: var(--accent-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 15px;
  text-shadow: none; /* テキストシャドウを完全に削除 */
}

p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

ul,
ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  position: relative;
}

.section ul li {
  list-style-type: none;
  padding-left: 25px;
}

.section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.section ol {
  counter-reset: item;
  list-style-type: none;
}

.section ol li {
  counter-increment: item;
  padding-left: 25px;
  position: relative;
}

.section ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Sections */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: visible;
}

.section .container {
  position: relative;
  z-index: 2;
}

.alt-section {
  background-color: var(--secondary-color);
}

/* 水玉背景パターン - 共通スタイル */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23fbb2df' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.alt-section::before {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* セクションに派手なグラデーション背景を追加 */
.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 133, 200, 0.1) 0%, rgba(255, 133, 200, 0) 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 133, 200, 0.1) 0%, rgba(255, 133, 200, 0) 20%);
  z-index: 1;
}

.alt-section::after {
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 20%);
}

/* 特徴カードのスタイル */
.feature-card {
  background: linear-gradient(135deg, #fff, #f8f8f8);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
  overflow: hidden;
}

.feature-card::before {
  display: none;
}

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

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* feature-imageクラスのスタイルを更新して、すべての画像が同じサイズになるようにします */
.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%; /* 幅を100%に設定 */
  object-fit: cover; /* 画像の比率を保ちながら領域を埋める */
  height: 180px; /* すべての画像に固定の高さを設定 */
}

.feature-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* PC版のみ改行を表示するスタイルを追加 */
.pc-only {
  display: inline;
}

/* モバイル版では改行を非表示にする */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* 以下を追加: スマホ版のみ改行を表示するスタイル */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* Header */
.main-header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 36px;
  width: auto;
}

.header-contact {
  display: flex;
  align-items: center;
}

.contact-button {
  background-color: var(--accent-color-dark); /* 水色から濃いピンク色に変更 */
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 74, 173, 0.2); /* 影の色も調整 */
}

.contact-button:hover {
  background-color: #ff2a9d; /* ホバー時の色も調整 */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 74, 173, 0.3); /* 影の色も調整 */
}

.header-bar {
  height: 4px;
  background-color: var(--accent-color); /* 水色からピンク色に変更 */
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header-content {
    padding: 0 15px;
  }

  .header-logo {
    height: 30px;
  }

  /* ヘッダーロゴのスマホ版サイズを30%小さくする */
  .header-logo {
    height: 21px; /* 元の30pxから30%減の21pxに変更 */
  }

  .contact-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

header h1,
header h2 {
  color: var(--white);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url("images/hero-background.png"); /* Unsplashの画像からローカル画像に変更 */
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/* ヒーローセクションにも水玉背景を適用 */
.hero-section::before {
  display: none; /* 水玉背景を非表示にする */
}

/* ヒーローセクションに派手なアニメーション背景を追加 */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 133, 200, 0.3) 0%, rgba(255, 133, 200, 0) 70%);
  animation: heroGradient 10s ease infinite alternate;
  z-index: 1;
}

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

/* ヒーローセクションに紫色のアクセントを追加 */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6), rgba(218, 112, 214, 0.4));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 3;
  text-align: center; /* 左揃えからセンタリングに変更 */
  max-width: 1200px;
  padding: 0 20px;
}

.hero-section h1,
.hero-section h2 {
  color: var(--white);
  text-shadow: none; /* テキストシャドウを削除 */
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-section h2 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: none;
  animation: none;
  max-width: 100%; /* テキスト幅の制限を解除 */
  margin: 0 auto 25px; /* 中央揃えのためにマージンを調整 */
}

@keyframes glow {
  from {
    text-shadow: none;
  }
  to {
    text-shadow: none;
  }
}

.hero-section h2::after {
  display: none;
}

.hero-section p {
  font-size: 1.3rem;
  max-width: 100%; /* テキスト幅の制限を解除 */
  margin: 0 auto 30px; /* 中央揃えのためにマージンを調整 */
  text-shadow: none;
}

/* ヒーローセクションのリストスタイルを修正 */
.hero-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 1200px; /* 最大幅を広げる */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hero-section li {
  position: relative;
  padding: 15px 20px 15px 50px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: calc(33.33% - 20px); /* PC版では3つ並べる */
  max-width: 380px;
  border-left: 3px solid #fff;
}

/* モバイル用のスタイル調整 */
@media (max-width: 992px) {
  .hero-section li {
    width: 100%; /* モバイルでは幅いっぱいに */
    max-width: 400px;
  }
}

.hero-section li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.25);
}

.hero-section li:before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  background: var(--accent-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-section .cta-button {
  font-size: 1.2rem;
  padding: 15px 40px;
  margin-top: 20px;
  background: linear-gradient(45deg, #fff, #f8f8f8);
  color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.hero-section .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.6s ease;
  z-index: -1;
}

/* ヒーローセクションのボタンに紫色のアクセントを追加 */
.hero-section .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(155, 89, 182, 0.3);
  color: var(--purple-color);
}

.hero-section .cta-button:hover::before {
  left: 100%;
}

/* 注意事項セクションの新しいスタイル */
.notice-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 100%; /* 変更: 900pxから100%に変更して料金表と同じ幅にする */
  overflow: hidden;
  position: relative;
  border-top: 5px solid var(--accent-color);
}

.notice-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 133, 200, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: 1;
}

.notice-header {
  background: linear-gradient(to right, var(--accent-color), var(--primary-color));
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.notice-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.notice-title {
  color: white;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  border-left: none;
  padding-left: 0;
}

.notice-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  margin-bottom: 15px;
  padding-left: 0;
}

.notice-list li:last-child {
  margin-bottom: 0;
}

.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.notice-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: #f5f5f5;
}

.notice-item-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-item-text {
  font-size: 1.1rem; /* 1remから1.1remに拡大 */
  line-height: 1.5;
  color: var(--text-color);
  font-weight: bold; /* 太字に変更 */
}

/* CTAセクションの新しいスタイル */
.cta-container {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 16px;
  padding: 40px;
  margin: 40px auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(255, 133, 200, 0.2);
}

.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.cta-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.cta-text {
  flex: 1;
}

.cta-text h3 {
  color: #333333;
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  font-weight: 700;
  border-left: none;
  padding-left: 0;
}

.cta-text p {
  color: #333333;
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* シンプルなボタンスタイル */
.simple-button {
  background: white;
  color: var(--accent-color);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.simple-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cta-container {
    padding: 30px 20px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .simple-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* サービス概要セクションを派手に */
.section:nth-of-type(1) {
  position: relative;
}

.section:nth-of-type(1) .container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 178, 223, 0.2);
  transform: translateY(-20px); /* -50pxから-20pxに変更して隙間を広げる */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 「主な特徴」のグロー効果を削除 */
.section:nth-of-type(1) h3 {
  display: inline-block;
  background: var(--accent-gradient);
  color: white;
  border-left: none;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 133, 200, 0.3);
  text-shadow: none; /* テキストシャドウを完全に削除 */
}

.section:nth-of-type(1) ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.section:nth-of-type(1) ul li {
  background: linear-gradient(135deg, #fff, #f8f8f8);
  padding: 15px 20px 15px 50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: calc(33.33% - 10px);
  min-width: 250px;
  border-left: 3px solid var(--accent-color);
}

.section:nth-of-type(1) ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section:nth-of-type(1) ul li::before {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-gradient);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* サービス概要セクションの項目に紫色を追加 */
.section:nth-of-type(1) ul li:nth-child(even) {
  border-left: 3px solid var(--purple-color);
}

.section:nth-of-type(1) ul li:nth-child(even)::before {
  background: var(--purple-gradient);
}

/* 強みセクションを派手に */
.section:nth-of-type(2) ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.section:nth-of-type(2) ul li {
  background: linear-gradient(135deg, #fff, #f8f8f8);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: calc(33.33% - 20px);
  min-width: 300px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--accent-color);
}

.section:nth-of-type(2) ul li:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section:nth-of-type(2) ul li::before {
  display: none;
}

.section:nth-of-type(2) ul li strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--accent-color);
  position: relative;
}

.section:nth-of-type(2) ul li strong::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* 強みセクションの項目に紫色を追加 */
.section:nth-of-type(2) ul li:nth-child(even) {
  border-bottom: 5px solid var(--purple-color);
}

.section:nth-of-type(2) ul li:nth-child(even) strong {
  color: var(--purple-color);
}

.section:nth-of-type(2) ul li:nth-child(even) strong::after {
  background: var(--purple-gradient);
}

/* サービス内容セクションを派手に */
.section:nth-of-type(3) ol {
  counter-reset: service-counter;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section:nth-of-type(3) ol li {
  counter-increment: service-counter;
  background: linear-gradient(135deg, #fff, #f8f8f8);
  padding: 25px 25px 25px 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border-left: 5px solid var(--accent-color);
}

.section:nth-of-type(3) ol li:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section:nth-of-type(3) ol li::before {
  content: counter(service-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 133, 200, 0.3);
}

.section:nth-of-type(3) ol li strong {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* サービス内容セクションの項目に紫色を追加 */
.section:nth-of-type(3) ol li:nth-child(even) {
  border-left: 5px solid var(--purple-color);
}

.section:nth-of-type(3) ol li:nth-child(even)::before {
  background: var(--purple-gradient);
}

.section:nth-of-type(3) ol li:nth-child(even) strong {
  color: var(--purple-color);
}

/* 新しいサービスカードのスタイル */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* 下段のカードをセンタリングするためのスタイルを追加 */
@media (min-width: 769px) {
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .service-card {
    width: calc(33.33% - 25px);
    min-width: 280px;
    max-width: 350px;
  }
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 4px solid var(--accent-color);
}

.service-card:nth-child(even) {
  border-bottom: 4px solid var(--purple-color);
}

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

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 133, 200, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}

.service-card:nth-child(even)::before {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255, 133, 200, 0.3);
  transition: all 0.4s ease;
}

.service-card:nth-child(even) .service-icon {
  background: var(--purple-gradient);
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2rem;
  color: white;
  text-shadow: none; /* テキストシャドウを削除 */
}

.service-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.service-content h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.service-card:nth-child(even) .service-content h4 {
  color: var(--purple-color);
}

.service-content h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.service-card:nth-child(even) .service-content h4::after {
  background: var(--purple-gradient);
}

.service-content p {
  color: var(--light-text);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.service-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(255, 133, 200, 0.3);
  z-index: 2;
}

.service-card:nth-child(even) .service-number {
  background: var(--purple-gradient);
  box-shadow: 0 4px 10px rgba(155, 89, 182, 0.3);
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 1.7rem;
  }
}

/* サービス内容セクションの画像スタイル */
.service-image-container {
  margin-top: 30px;
  text-align: center;
}

/* Add a specific class for the service image that needs to be resized on PC only */
.service-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* PC-specific size reduction (20% smaller) */
@media (min-width: 769px) {
  .service-image {
    max-width: 80%; /* Reduced from 100% to 80% (20% smaller) for PC only */
  }
}

.service-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .service-image {
    width: 90%;
  }
}

/* スマホ版で特定の画像を非表示にするためのスタイルを追加 */
@media (max-width: 768px) {
  .service-image-container {
    display: none;
  }
}

/* インフルエンサー紹介セクションを派手に */
.section:nth-of-type(4) {
  position: relative;
}

.section:nth-of-type(4) .container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* インフルエンサー紹介セクションのh3のグロー効果も削除 */
.section:nth-of-type(4) h3 {
  display: inline-block;
  background: var(--mixed-gradient);
  color: white;
  border-left: none;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 133, 200, 0.3);
  text-shadow: none; /* テキストシャドウを完全に削除 */
  margin-bottom: 30px;
}

.section:nth-of-type(4) ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.section:nth-of-type(4) ul li {
  background: linear-gradient(135deg, #fff, #f8f8f8);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: calc(25% - 15px);
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent-color);
}

.section:nth-of-type(4) ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section:nth-of-type(4) ul li::before {
  display: none;
}

/* インフルエンサー紹介セクションに紫色を追加 */
.section:nth-of-type(4) h3 {
  background: var(--mixed-gradient);
}

.section:nth-of-type(4) ul li:nth-child(even) {
  border-bottom: 3px solid var(--purple-color);
}

/* ジャンル別インフルエンサー構成のスタイル */
.genre-title-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.genre-title {
  background: linear-gradient(90deg, var(--primary-color), var(--purple-color));
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.genre-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
  z-index: -1;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.genre-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.genre-card {
  background: white;
  border-radius: 15px;
  padding: 15px 25px;
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.genre-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.genre-card.pink::before {
  background: var(--accent-gradient);
}

.genre-card.purple::before {
  background: var(--purple-gradient);
}

.genre-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(251, 178, 223, 0.05), transparent 50%);
  z-index: 1;
}

.genre-card.purple::after {
  background: linear-gradient(to top, rgba(155, 89, 182, 0.05), transparent 50%);
}

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

.genre-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.genre-name {
  font-weight: bold;
  color: var(--text-color);
}

.genre-percentage {
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  color: white; /* Change from gradient to white */
}

.genre-card.purple .genre-percentage {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .genre-card {
    min-width: calc(50% - 20px);
  }

  .section:nth-of-type(1) ul li {
    width: 100%;
  }

  .feature-content {
    flex-direction: column;
  }

  .feature-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .genre-card {
    min-width: 100%;
  }
}

/* チャートコンテナのスタイルを調整 */
.chart-container {
  max-width: 600px;
  margin: 40px auto 0;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.chart-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(251, 178, 223, 0.05) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(155, 89, 182, 0.05) 100%
  );
  z-index: 1;
}

.chart-container canvas {
  position: relative;
  z-index: 2;
}

/* 事例紹介セクションを派手に */
.case-study {
  background: linear-gradient(135deg, #fff, #f8f8f8);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--accent-color);
}

.case-study:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-study h3 {
  color: var(--accent-color);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-left: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.case-study h3 i {
  background: var(--accent-gradient);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 133, 200, 0.3);
}

.case-study ul {
  margin-bottom: 0;
}

.case-study ul li {
  margin-bottom: 10px;
}

.case-study ul li:last-child {
  margin-bottom: 0;
}

.case-study ul li strong {
  color: var(--accent-color);
}

/* 事例紹介セクションに紫色を追加 */
.case-study:nth-child(even) {
  border-left: 5px solid var(--purple-color);
}

.case-study:nth-child(even) h3 {
  color: var(--purple-color);
}

.case-study:nth-child(even) h3 i {
  background: var(--purple-gradient);
}

.case-study:nth-child(even) ul li strong {
  color: var(--purple-color);
}

/* Service Flow */
.service-flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.service-flow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 4px;
  background: var(--accent-gradient);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 133, 200, 0.5);
}

.flow-step {
  display: flex;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #fff, #f8f8f8);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 5px solid var(--accent-color);
}

.flow-step:hover {
  transform: translateX(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(255, 133, 200, 0.3);
  z-index: 3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 133, 200, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 133, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 133, 200, 0);
  }
}

.step-icon {
  flex: 0 0 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.flow-step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-icon i {
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-content {
  flex: 1;
}

/* サービス利用の流れのh3のグロー効果も削除 */
.step-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
  font-size: 1.4rem;
  color: var(--accent-color);
  text-shadow: none; /* テキストシャドウを完全に削除 */
}

.step-content p {
  margin-bottom: 0;
  color: var(--light-text);
  font-size: 1.05rem;
}

/* サービス利用の流れに紫色を追加 */
.flow-step:nth-child(even) {
  border-left: 5px solid var(--purple-color);
}

.flow-step:nth-child(even) .step-number {
  background: var(--purple-gradient);
  animation: purplePulse 2s infinite;
}

@keyframes purplePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(155, 89, 182, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
  }
}

.flow-step:nth-child(even) .step-icon {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-color));
}

.flow-step:nth-child(even) .step-content h3 {
  color: var(--purple-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* コンタクトセクションの背景を更新 */
.contact-section::before {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23fbb2df' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.pricing-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.cta-content {
  margin-bottom: 25px;
}

.cta-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-content p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.1rem;
  max-width: 600px;
}

/* 派手なボタンスタイル */
.fancy-button {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fancy-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.1);
}

.button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff85c8, #fbb2df, #ff85c8);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  z-index: 1;
}

.pricing-cta .fancy-button .button-bg {
  background: linear-gradient(45deg, #ff85c8, #fbb2df, #ff6bb3);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.contact-cta .fancy-button .button-bg {
  background: linear-gradient(45deg, #ff6bb3, #ff85c8, #fbb2df);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.button-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.fancy-button:hover .button-content {
  transform: scale(1.05);
}

.fancy-button i {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

.fancy-button::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #ff85c8, #fbb2df, #ff85c8);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  z-index: 0;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.fancy-button:hover::before {
  opacity: 0.5;
}

.fancy-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fancy-button:hover::after {
  transform: translateX(100%) rotate(45deg);
}

.large-cta.fancy-button .button-content {
  padding: 18px 50px;
  font-size: 1.3rem;
}

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

/* 既存のglow-buttonスタイルを削除または上書き */
.glow-button {
  background-color: transparent;
  box-shadow: none;
  animation: none;
}

.glow-button:hover {
  transform: none;
  box-shadow: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .button-content {
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  .large-cta.fancy-button .button-content {
    padding: 16px 40px;
    font-size: 1.2rem;
  }

  .pricing-cta,
  .contact-cta {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .button-content {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .large-cta.fancy-button .button-content {
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  .pricing-cta,
  .contact-cta {
    padding: 30px 20px;
  }

  .fancy-button i {
    font-size: 1.1rem;
  }
}

/* スパークルアニメーション */
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

/* フッターに紫色のアクセントを追加 */
footer {
  background: #000000;
  position: relative;
}

/* フッターの背景も更新 */
footer::before {
  display: none; /* 水玉背景を非表示にする */
}

/* 会社ロゴ画像のスタイルを追加 */
.company-logo {
  margin-bottom: 15px;
  text-align: center;
}

.company-image {
  max-width: 250px;
  height: auto;
  filter: brightness(0) invert(1); /* 画像を白色に変換 */
}

@media (max-width: 768px) {
  .company-image {
    max-width: 200px;
  }
}

/* フッターの中部（会社情報エリア） */
.footer-middle {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* フッターの下部（著作権エリア） */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  background-color: #000000;
}

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

.company-address {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.company-about {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.company-about:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* 料金表のスタイル */
.pricing-table-container {
  overflow-x: auto;
  margin-bottom: 40px;
  padding: 10px 0;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 25px;
  text-align: center;
  border: none;
  vertical-align: middle;
  position: relative;
}

/* 縦の仕切り線を追加 */
.pricing-table th:not(:last-child),
.pricing-table td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* ヘッダー行のスタイル */
.plan-header {
  background: white;
  position: relative;
  padding-top: 40px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header.nano-plan {
  border-top: 5px solid var(--accent-color);
}

.plan-header.micro-plan {
  border-top: 5px solid var(--purple-color);
  position: relative;
}

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

/* Change the mega-plan background from purple gradient to white */
.plan-header.mega-plan {
  border-top: 5px solid var(--purple-color);
  background: white; /* Changed from gradient to white */
}

.popular-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--purple-gradient);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 20px rgba(255, 133, 200, 0.2);
}

.micro-plan .plan-icon,
.mega-plan .plan-icon {
  background: var(--purple-gradient);
  box-shadow: 0 10px 20px rgba(155, 89, 182, 0.2);
}

.plan-icon i {
  font-size: 2rem;
  color: white;
}

.plan-header h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin: 0 0 10px;
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.micro-plan h3,
.mega-plan h3 {
  color: var(--purple-color);
}

.plan-followers {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-followers span {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
}

.plan-followers small {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* 価格行のスタイル */
.price-row {
  background: #f9f9f9;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
}

.micro-plan .amount {
  color: var(--purple-color);
}

.period {
  font-size: 1.1rem;
  color: var(--light-text);
}

.custom-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
}

.mega-plan .custom-price {
  color: var(--purple-color);
}

/* 特徴行のスタイル */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  padding-left: 0;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.features-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.micro-plan .features-list li i,
.mega-plan .features-list li i {
  color: var(--purple-color);
}

/* 料金例行のスタイル */
.example-row {
  background: #f9f9f9;
}

.price-example {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.example-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--text-color);
}

.example-header i {
  color: var(--accent-color);
}

.micro-plan .example-header i,
.mega-plan .example-header i {
  color: var(--purple-color);
}

.example-title {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 5px;
}

.example-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .pricing-table th,
  .pricing-table td {
    padding: 15px;
  }

  .plan-icon {
    width: 60px;
    height: 60px;
  }

  .plan-icon i {
    font-size: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1.1rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .custom-price {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    min-width: 700px; /* スクロール可能な最小幅 */
  }

  .pricing-table-container {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 統計画像のスタイルを追加 */
.stats-images-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.stats-image-wrapper {
  flex: 1;
  max-width: 36%; /* Changed from 45% to 36% (20% smaller) */
}

.stats-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.type-image-container {
  text-align: center;
  margin-top: 20px;
}

.type-image {
  max-width: 72%; /* Changed from 90% to 72% (20% smaller) */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.anken-image-container {
  text-align: center;
  margin: 30px auto;
}

/* Add PC-specific size reduction for anken-image */
.anken-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* PC-specific size reduction (20% smaller) */
@media (min-width: 769px) {
  .anken-image {
    max-width: 60%; /* Reduced from 72% to 60% (20% smaller) for PC only */
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .stats-images-container {
    flex-direction: column;
    align-items: center;
  }

  .stats-image-wrapper {
    max-width: 72%; /* Changed from 90% to 72% (20% smaller) */
  }
}

/* 実績統計カードのスタイル */
.stats-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.stats-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats-card:nth-child(2) {
  border-bottom: 4px solid var(--purple-color);
}

.stats-card:nth-child(3) {
  border-bottom: 4px solid var(--accent-color-dark);
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 133, 200, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}

.stats-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.stats-card:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(255, 74, 173, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

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

.stats-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255, 133, 200, 0.3);
  transition: all 0.4s ease;
}

.stats-card:nth-child(2) .stats-icon {
  background: var(--purple-gradient);
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
}

.stats-card:nth-child(3) .stats-icon {
  background: linear-gradient(135deg, var(--accent-color-dark), var(--accent-color));
  box-shadow: 0 8px 20px rgba(255, 74, 173, 0.3);
}

.stats-card:hover .stats-icon {
  transform: scale(1.1) rotate(5deg);
}

.stats-icon i {
  font-size: 2rem;
  color: white;
}

.stats-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.stats-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-weight: 700;
}

.stats-card:nth-child(2) .stats-content h4 {
  color: var(--purple-color);
}

.stats-card:nth-child(3) .stats-content h4 {
  color: var(--accent-color-dark);
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter {
  display: inline-block;
}

.plus {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-left: 5px;
}

.stats-card:nth-child(2) .plus {
  color: var(--purple-color);
}

.stats-card:nth-child(3) .plus {
  color: var(--accent-color-dark);
}

.unit {
  font-size: 2.5rem;
  margin-left: 5px;
}

.stats-content p {
  color: var(--light-text);
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* インフルエンサーの一例セクションのスタイル */
.influencer-examples {
  margin-top: 60px;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  background: var(--accent-gradient);
  color: white;
  border-radius: 30px;
  padding: 10px 30px;
  margin: 0 auto 30px;
  border-left: none;
  box-shadow: 0 5px 15px rgba(255, 133, 200, 0.3);
  text-align: center;
}

.influencer-image-container {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.influencer-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.influencer-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .stats-cards {
    gap: 20px;
  }

  .stats-card {
    padding: 25px;
    max-width: 300px;
  }

  .stats-icon {
    width: 70px;
    height: 70px;
  }

  .stats-number {
    font-size: 3rem;
  }

  .plus,
  .unit {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stats-cards {
    flex-direction: column;
    align-items: center;
  }

  .stats-card {
    max-width: 100%;
  }
}

/* 商材の一例セクションのスタイル */
.product-examples {
  margin-top: 60px;
  text-align: center;
}

.product-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .product-images-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* スマホ表示時のヒーローセクションのスタイル調整 */
@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 2.5rem; /* フォントサイズを大きく調整（2remから2.5remに変更） */
  }

  .hero-section p {
    font-size: 1.1rem; /* 説明文も少し小さく */
  }

  /* セクションタイトルのフォントサイズを小さく */
  h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
    padding: 8px 20px;
  }
}

/* スマホ版のヒーロー背景画像を調整して女性全体が見えるようにする */
@media (max-width: 768px) {
  .hero-section {
    background-size: 170% auto; /* 背景サイズを調整 */
    background-position: 40% 30%; /* 背景位置を調整して女性全体が見えるようにする */
  }
}

/* お問い合わせセクションのスタイルを追加 */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent-color);
}

.contact-card:nth-child(2) {
  border-bottom: 4px solid var(--purple-color);
}

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

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 133, 200, 0.3);
}

.contact-card:nth-child(2) .contact-icon {
  background: var(--purple-gradient);
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
}

.contact-icon i {
  font-size: 2rem;
  color: white;
}

.contact-card h3 {
  color: var(--accent-color);
  margin-top: 0;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.contact-card:nth-child(2) h3 {
  color: var(--purple-color);
}

.contact-detail {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-hours {
  color: var(--light-text);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.contact-action {
  display: inline-block;
  background: var(--accent-gradient);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 133, 200, 0.3);
}

.contact-card:nth-child(2) .contact-action {
  background: var(--purple-gradient);
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.contact-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 133, 200, 0.4);
}

.contact-card:nth-child(2) .contact-action:hover {
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
}

.contact-action i {
  margin-right: 8px;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    max-width: 100%;
  }
}

/* 以下を追加: 画像拡大モーダルのスタイル */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* スマホ版でのみインフルエンサー画像にタップ可能な見た目を追加 */
@media (max-width: 768px) {
  .influencer-image-container,
  .type-image-container {
    position: relative;
    cursor: pointer;
  }

  .influencer-image-container::after,
  .type-image-container::after {
    content: "タップして拡大";
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    pointer-events: none;
  }
}

