/* ========================================
   紹介キャンペーンページ - モダンデザイン
   ======================================== */

/* ベーススタイル */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 30px;
  position: relative;
}

/* 右側固定ナビゲーション */
.sticky-nav {
  width: 220px;
  position: sticky;
  top: 80px;
  height: fit-content;
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  order: 2;
}

.sticky-nav h4 {
  margin: 0 0 15px 0;
  font-size: 1rem;
  color: #667eea;
  font-weight: 700;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

.sticky-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.sticky-nav ul li {
  margin-bottom: 12px;
}

.sticky-nav ul li a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.sticky-nav ul li a:hover {
  background: #f0f4ff;
  color: #667eea;
  padding-left: 16px;
}

.sticky-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-cta-button {
  display: block;
  padding: 10px 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s;
}

.mini-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* メインコンテンツエリア */
.main-content {
  flex: 1;
  order: 1;
}

@media (max-width: 968px) {
  .page-container {
    flex-direction: column;
  }

  .sticky-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    max-width: 50px;
    padding: 10px 8px;
    border-radius: 12px 0 0 12px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    z-index: 1000;
    order: unset;
  }

  .sticky-nav h4 {
    writing-mode: vertical-rl;
    font-size: 0.75rem;
    margin: 0 0 10px 0;
    letter-spacing: 0.05em;
  }

  .sticky-nav ul {
    margin: 0;
    padding: 0;
  }

  .sticky-nav ul li {
    margin: 8px 0;
  }

  .sticky-nav ul li a {
    font-size: 0.7rem;
    padding: 8px 4px;
    writing-mode: vertical-rl;
    display: block;
    text-align: center;
  }

  .sticky-cta {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mini-cta-button {
    font-size: 0.65rem;
    padding: 8px 4px;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }

  .main-content {
    order: 1;
    width: 100%;
  }
}

/* シンプルなヘッダー */
.simple-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.simple-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simple-header__logo {
  height: 40px;
}

.simple-header__nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.simple-header__nav a:hover {
  color: #667eea;
}

/* シンプルなフッター */
.simple-footer {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.simple-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.simple-footer__links {
  margin-bottom: 20px;
}

.simple-footer__links a {
  margin: 0 15px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.simple-footer__links a:hover {
  color: #667eea;
  text-decoration: underline;
}

.simple-footer__copyright {
  color: #999;
  font-size: 12px;
}

/* ヒーローセクション */
.referral-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.referral-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.referral-main-title {
  font-size: 2.2rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.highlight {
  color: #ffd700;
  font-size: 2.6rem;
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.referral-subtitle {
  font-size: 1.15rem;
  margin: 0 0 30px 0;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-cta {
  margin-top: 30px;
  text-align: center;
}

.hero-image {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* CTAボタン */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.cta-button.--primary {
  background: #ffd700;
  color: #333;
}

.cta-icon {
  font-size: 1.3rem;
}

/* 安心ポイントセクション */
.trust-section {
  padding: 60px 20px;
  background: white;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 15px 0;
  color: #333;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin: 0 0 50px 0;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.trust-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.trust-card h3 {
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  color: #333;
}

.trust-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* サービス紹介セクション */
.referral-services {
  padding: 60px 20px;
  background: #f8f9fa;
}

.referral-services h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 50px 0;
  color: #333;
  font-weight: 700;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.service-logo {
  height: 50px;
  max-width: 250px;
  width: auto;
  object-fit: contain;
}

.service-header h3,
.service-title {
  font-size: 1.8rem;
  margin: 0;
  color: #333;
  font-weight: 700;
}

.service-visual {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
}

.service-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

.service-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.service-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #667eea;
  border-radius: 8px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-button:hover {
  background: #667eea;
  color: white;
}

.link-button.--primary {
  background: #667eea;
  color: white;
}

.link-button.--primary:hover {
  background: #5568d3;
}

.service-cta {
  margin-top: 25px;
  text-align: center;
}

/* ターゲット顧客セクション */
.target-customers {
  background: #f0f4ff;
  padding: 25px;
  border-radius: 10px;
  margin: 25px 0;
  border-left: 4px solid #667eea;
}

.target-customers h4 {
  font-size: 1.15rem;
  margin: 0 0 15px 0;
  color: #333;
  font-weight: 700;
}

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

.customer-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
}

.customer-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 1.2rem;
}

/* 紹介の流れ */
.referral-flow {
  padding: 60px 20px;
  background: white;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 50px;
  align-items: stretch;
}

.flow-step {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.flow-step:hover {
  background: #fff;
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.flow-step.--highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}

.flow-step.--highlight h4,
.flow-step.--highlight p {
  color: white;
}

.step-header {
  margin-bottom: 15px;
}

.step-number {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.flow-step.--highlight .step-number {
  background: #ffd700;
  color: #333;
}

.step-time {
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
}

.flow-step.--highlight .step-time {
  color: rgba(255, 255, 255, 0.9);
}

.step-icon {
  font-size: 2.5rem;
  margin: 15px 0;
}

.flow-step h4 {
  font-size: 1.2rem;
  margin: 15px 0 10px 0;
  color: #333;
  font-weight: 700;
}

.flow-step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.step-note {
  font-size: 0.75rem;
  color: #999;
  margin-top: 10px;
  font-style: italic;
}

.flow-step.--highlight .step-note {
  color: rgba(255, 255, 255, 0.9);
}

.step-note.--success {
  color: #ffd700;
  font-weight: 700;
  font-style: normal;
}

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

/* 注意事項 */
.referral-terms {
  padding: 60px 20px;
  background: #f8f9fa;
}

.referral-terms h2 {
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 40px 0;
  color: #333;
  font-weight: 700;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.terms-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.terms-list li:last-child {
  border-bottom: none;
}

/* サービス詳細セクション */
.service-detail-section {
  padding: 60px 20px;
  background: white;
  border-top: 3px solid #667eea;
}

.service-detail-section h2 {
  font-size: 2rem;
  margin: 0 0 40px 0;
  color: #333;
  font-weight: 700;
  text-align: center;
}

.detail-card {
  background: #f8f9fa;
  padding: 25px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid #667eea;
}

.detail-card h3 {
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  color: #333;
  font-weight: 700;
}

.detail-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.step-item {
  margin-bottom: 30px;
  padding: 20px 15px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.step-item h4 {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  color: #333;
  font-weight: 700;
}

.step-badge {
  background: #667eea;
  color: white;
  padding: 4px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 10px;
}

.action-link {
  display: inline-block;
  color: #667eea;
  background: #f0f4ff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin: 10px 0;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #667eea;
}

.action-link:hover {
  background: #667eea;
  color: white;
}

.info-box {
  background: #fff9e6;
  border-left: 4px solid #ffc107;
  padding: 25px;
  margin: 20px 0;
  border-radius: 8px;
}

.info-box h5 {
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  color: #333;
  font-weight: 700;
}

.info-box ul {
  margin: 10px 0;
  padding-left: 20px;
}

.info-box li {
  margin: 8px 0;
  line-height: 1.7;
}

.note {
  color: #d32f2f;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

.detail-cta {
  text-align: center;
  margin-top: 40px;
}

/* CTAセクション */
.referral-cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-box h3 {
  font-size: 2rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.15rem;
  margin: 0 0 40px 0;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

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

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .referral-main-title {
    font-size: 1.6rem;
  }

  .highlight {
    font-size: 1.9rem;
  }

  .referral-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .service-links {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .referral-hero,
  .trust-section,
  .referral-services,
  .referral-flow,
  .referral-terms,
  .service-detail-section,
  .referral-cta-section {
    padding: 50px 20px;
  }
}

.sp-only {
  display: none;
}

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

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* ========================================
   新しい簡潔なデザイン
   ======================================== */

/* セクション共通イントロ */
.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 10px 0 40px 0;
}

.section-intro strong {
  color: #667eea;
  font-weight: 700;
}

/* サービスグリッド（2カラム、コンパクト） */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card-compact {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.service-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.service-logo-compact {
  height: 40px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-preview {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-brief {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
  min-height: 60px;
}

.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.service-info-button {
  display: inline-block;
  padding: 10px 20px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #667eea;
  transition: all 0.2s;
  text-align: center;
}

.service-info-button:hover {
  background: #f0f4ff;
}

.service-try-button {
  display: inline-block;
  padding: 12px 24px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.service-try-button:hover {
  background: #5568d3;
  transform: translateX(5px);
}

/* 共通メリット */
.common-benefits {
  background: #f0f4ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.common-benefits h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 1.3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.benefit-item {
  background: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

/* シンプルなフローステップ */
.flow-steps-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.flow-step-simple {
  flex: 1;
  max-width: 300px;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.flow-step-simple.--highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.step-number-big {
  width: 50px;
  height: 50px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px auto;
}

.flow-step-simple.--highlight .step-number-big {
  background: white;
  color: #667eea;
}

.flow-step-simple h4 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.flow-step-simple p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.flow-arrow-simple {
  font-size: 2rem;
  color: #667eea;
  font-weight: 700;
}

.flow-note {
  background: #fff9e6;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ffc107;
  margin-top: 30px;
}

.flow-note p {
  margin: 0;
  font-size: 1.05rem;
  color: #555;
}

/* 申込ステップ（共通化） */
.application-steps {
  max-width: 700px;
  margin: 0 auto;
}

.app-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.app-step-number {
  width: 50px;
  height: 50px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.app-step.--success .app-step-number {
  background: #28a745;
  font-size: 1.8rem;
}

.app-step-content {
  flex: 1;
}

.app-step-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  color: #333;
}

.app-step-content p {
  margin: 0 0 15px 0;
  color: #555;
  line-height: 1.7;
}

.service-urls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.url-button {
  display: inline-block;
  padding: 10px 20px;
  background: #f0f4ff;
  color: #667eea;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid #667eea;
}

.url-button:hover {
  background: #667eea;
  color: white;
}

.required-info {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
}

.required-info li {
  padding: 5px 0;
  color: #555;
  font-weight: 500;
}

/* サービス活用例 */
.service-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

.example-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.example-caption {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .services-grid,
  .benefits-grid,
  .service-examples {
    grid-template-columns: 1fr;
  }

  .flow-steps-simple {
    flex-direction: column;
  }

  .flow-arrow-simple {
    transform: rotate(90deg);
  }

  .app-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-urls {
    flex-direction: column;
  }

  .url-button {
    width: 100%;
  }
}
