@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');

  	  :root {
		--primary: #3eb155;
		--primary-dark: #2d8a40;
		--primary-light: #e8f7eb;
		--sub: #fff100;
		--sub-dark: #e6d800;
		--attention: #ef4444;
		--text-dark: #3a3a3a;
		--text-light: #7d7d7d;
		--white: #ffffff;
		--black: #000000;
		--bg-light: #f7faf8;
		--bg-section: #f0f7f2;
		--border: #e0ede3;
		--radius: 8px;
		--radius-lg: 16px;
		--radius-xl: 24px;
		--shadow: 0 4px 24px rgba(62,177,85,0.10);
		--shadow-md: 0 8px 32px rgba(62,177,85,0.14);
  	  }

  	  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  	  html { scroll-behavior: smooth; }

  	  body {
		font-family: "LINE Seed JP", sans-serif;
		color: var(--text-dark);
		background: var(--white);
		line-height: 1.7;
		font-size: 16px;
  	  }
	  
	  p{ color: var(--text-dark);}

  	  /* ===== UTILITIES ===== */
  	  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

  	  .tag {
		display: inline-block;
		background: var(--primary-light);
		color: var(--primary-dark);
		font-size: 13px;
		font-weight: 700;
		padding: 4px 14px;
		border-radius: 100px;
		margin-bottom: 12px;
		letter-spacing: 0.05em;
  	  }

  	  .section { padding: 80px 0; }
  	  .section--gray { background: var(--bg-light); }
  	  .section--green { background: var(--bg-section); }

  	  .section-title {
		font-size: clamp(22px, 3.5vw, 32px);
		font-weight: 800;
		color: var(--text-dark);
		line-height: 1.4;
		margin-bottom: 16px;
  	  }
  	  .section-title em { color: var(--primary); font-style: normal; }

  	  .section-lead {
		font-size: 16px;
		color: var(--text-dark);
		margin-bottom: 48px;
		line-height: 1.8;
  	  }

  	  .text-center { text-align: center; }

  	  .note {
		font-size: 10px !important;
		color: var(--text-light);
		margin-top: 16px;
		line-height: 1.8;
  	  }

  	  /* ===== CTA BUTTON ===== */
  	  .btn {
		position: relative;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 18px 40px;
		border-radius: var(--radius);
		font-size: 16px;
		font-weight: 700;
		font-family: "LINE Seed JP", sans-serif;
		cursor: pointer;
		border: none;
		text-decoration: none;
		overflow: hidden;
		transition: box-shadow 0.3s, transform 0.2s;
  	  }
  	  .btn::before {
		content: '';
		position: absolute;
		left: -100%;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,0.15);
		transition: left 0.3s ease;
  	  }
  	  .btn:hover::before { left: 0; }
  	  .btn:hover { box-shadow: 0 8px 24px rgba(62,177,85,0.35); transform: translateY(-1px); }
  	  .btn:active { transform: translateY(0); }
  	  .btn--primary { background: var(--primary); color: var(--white); }
  	  .btn--yellow { background: var(--sub); color: var(--text-dark); }
  	  .btn--yellow:hover { box-shadow: 0 8px 24px rgba(255,241,0,0.45); }
  	  .btn--lg { padding: 22px 56px; font-size: 18px; border-radius: var(--radius-lg); }
  	  .btn i { font-size: 17px; }

  	  /* ===== HEADER ===== */
  	  .hero {
		background: linear-gradient(135deg, #1a2e1d 0%, #0f1f11 60%, #1a3520 100%);
		padding: 80px 0 64px;
		position: relative;
		overflow: hidden;
  	  }
  	  .hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(62,177,85,0.18) 0%, transparent 70%);
  	  }
  	  .hero-grid {
		display: grid;
		grid-template-columns: 1fr 420px;
		gap: 48px;
		align-items: center;
		position: relative;
  	  }
  	  .hero-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: rgba(62,177,85,0.2);
		border: 1px solid rgba(62,177,85,0.4);
		color: #7ae896;
		font-size: 13px;
		font-weight: 700;
		padding: 6px 16px;
		border-radius: 100px;
		margin-bottom: 20px;
		letter-spacing: 0.05em;
  	  }
  	  .hero-title {
		font-size: clamp(26px, 4vw, 44px);
		font-weight: 800;
		color: var(--white);
		line-height: 1.3;
		margin-bottom: 20px;
  	  }
  	  .hero-title .line { color: #3eb155; }
  	  .hero-lead {
		font-size: 17px;
		color: var(--white);
		margin-bottom: 36px;
		line-height: 1.8;
  	  }
  	  .hero-cta-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  	  .hero-cta-note { font-size: 13px; color: var(--white); }

  	  .hero-card {
		background: rgba(255,255,255,0.05);
		border: 1px solid rgba(255,255,255,0.1);
		border-radius: var(--radius-xl);
		padding: 32px;
		backdrop-filter: blur(8px);
		position: relative;
  	  }
  	  .hero-card-label {
		font-size: 12px;
		color: rgba(255,255,255,0.5);
		font-weight: 700;
		letter-spacing: 0.1em;
		margin-bottom: 20px;
  	  }
  	  .hero-features { display: flex; flex-direction: column; gap: 12px; }
  	  .hero-feature-item {
		display: flex;
		align-items: center;
		gap: 14px;
		background: rgba(62,177,85,0.12);
		border: 1px solid rgba(62,177,85,0.25);
		border-radius: var(--radius);
		padding: 14px 18px;
		color: var(--white);
		font-size: 15px;
		font-weight: 700;
		transition: background 0.2s;
  	  }
  	  .hero-feature-item:hover { background: rgba(62,177,85,0.22); }
  	  .hero-feature-icon {
		width: 36px;
		height: 36px;
		background: var(--primary);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 15px;
		color: white;
		flex-shrink: 0;
  	  }
  	  .hero-badge {
		position: absolute;
		top: -16px;
		right: -16px;
		background: var(--sub);
		color: var(--text-dark);
		font-size: 13px;
		font-weight: 800;
		padding: 10px 16px;
		border-radius: 12px;
		box-shadow: 0 4px 16px rgba(255,241,0,0.4);
		text-align: center;
		line-height: 1.3;
  	  }

  	  /* ===== SECTION A ===== */
  	  .section-a-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 64px;
		align-items: center;
  	  }
  	  .section-a-img {
		display: flex;
		align-items: center;
		justify-content: center;
  	  }
	  .section-a-img img{ max-width: 100%;}
  	  .plus-divider {
		display: flex;
		align-items: center;
		gap: 24px;
		margin: 40px 0;
  	  }
  	  .plus-divider-line { flex: 1; height: 1px; background: var(--border); }
  	  .plus-mark {
		width: 48px;
		height: 48px;
		background: var(--primary);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--white);
		font-size: 20px;
		box-shadow: 0 4px 16px rgba(62,177,85,0.3);
  	  }
  	  .crm-card {
		background: linear-gradient(135deg, var(--primary-light) 0%, #ddf5e3 100%);
		border: 2px solid var(--primary);
		border-radius: var(--radius-xl);
		padding: 32px;
  	  }
  	  .crm-card-title {
		font-size: 18px;
		font-weight: 800;
		color: var(--primary-dark);
		margin-bottom: 12px;
		display: flex;
		align-items: center;
		gap: 10px;
  	  }
  	  .crm-card p { font-size: 15px; color: var(--text-dark); line-height: 1.8; }

  	  /* ===== SECTION B ===== */
  	  .feature-highlight {
		background: var(--white);
		border: 2px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 40px;
  	  }
  	  .feature-highlight-badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: var(--primary);
		color: white;
		font-size: 14px;
		font-weight: 700;
		padding: 8px 20px;
		border-radius: var(--radius);
		margin-bottom: 20px;
  	  }
  	  .feature-highlight-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
  	  .feature-highlight p { font-size: 15px; line-height: 1.8; }
  	  .feature-visual {
		background: linear-gradient(135deg, var(--bg-section) 0%, #e8f7eb 100%);
		border-radius: var(--radius-xl);
		aspect-ratio: 16/7;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid var(--border);
		margin-top: 32px;
		gap: 24px;
		flex-wrap: wrap;
		padding: 32px;
  	  }
	  
	  .feature-flex{ display: flex; justify-content: space-between; align-items: flex-start; gap: 30px;}
	  .feature-text{ text-align: left;}
	  .feature-flex img{ max-width: 320px;}
  	  .flow-step {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		flex: 1;
		min-width: 100px;
  	  }
  	  .flow-step-icon {
		width: 64px;
		height: 64px;
		background: var(--primary);
		border-radius: var(--radius-lg);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 24px;
		color: white;
		box-shadow: 0 4px 12px rgba(62,177,85,0.25);
  	  }
  	  .flow-step-label { font-size: 13px; font-weight: 700; color: var(--text-dark); text-align: center; }
  	  .flow-arrow { font-size: 20px; color: var(--primary); margin-top: -12px; }

  	  /* ===== SECTION C ===== */
  	  .what-is-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 32px;
		margin-top: 48px;
  	  }
  	  .what-is-card {
		background: var(--white);
		border: 2px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 36px;
		transition: box-shadow 0.3s, border-color 0.3s;
  	  }
  	  .what-is-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
  	  .what-is-card-header {
		display: flex;
		align-items: center;
		gap: 14px;
		margin-bottom: 24px;
  	  }
  	  .what-is-icon {
		width: 52px;
		height: 52px;
		background: var(--primary-light);
		border-radius: var(--radius);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: var(--primary-dark);
  	  }
  	  .what-is-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); }
  	  .feature-item-list { display: flex; flex-direction: column; gap: 12px; }
  	  .feature-item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 16px;
		background: var(--bg-light);
		border-radius: var(--radius);
		font-size: 14px;
		font-weight: 700;
  	  }
  	  .feature-item-icon {
		width: 32px;
		height: 32px;
		background: var(--primary);
		border-radius: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 13px;
		color: white;
		flex-shrink: 0;
  	  }

  	  /* ===== SECTION D ===== */
  	  .data-grid {
  	  }
  	  .data-visual {
		background: linear-gradient(135deg, #1a2e1d, #0f1f11);
		border-radius: var(--radius-xl);
		padding: 40px;
		color: var(--white);
  	  }
  	  .data-flow { display: flex; flex-direction: column; gap: 16px; }
  	  .data-node {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 16px 20px;
		background: rgba(62,177,85,0.15);
		border: 1px solid rgba(62,177,85,0.3);
		border-radius: var(--radius);
  	  }
  	  .data-node-icon { font-size: 18px; color: var(--primary); width: 24px; text-align: center; }
  	  .data-node-text { font-size: 14px; font-weight: 700; }
  	  .data-arrow { display: flex; align-items: center; padding-left: 28px; color: rgba(62,177,85,0.6); font-size: 16px; }
  	  .data-result {
		background: var(--primary);
		border-radius: var(--radius-lg);
		padding: 20px 24px;
		text-align: center;
		margin-top: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
  	  }
  	  .data-result-text { font-size: 16px; font-weight: 800; }

  	  /* ===== SECTION E ===== */
  	  .support-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 32px;
		margin-top: 48px;
  	  }
  	  .support-card {
		border-radius: var(--radius-xl);
		padding: 40px;
  	  }
  	  .support-card--before { background: linear-gradient(135deg, #e8f7eb, #d4f0da); border: 2px solid #b5e3be; }
  	  .support-card--after  { background: linear-gradient(135deg, #fff9e0, #fffacc); border: 2px solid #e6d800; }
  	  .support-phase-badge {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		font-size: 13px;
		font-weight: 700;
		padding: 6px 16px;
		border-radius: 100px;
		margin-bottom: 20px;
  	  }
  	  .support-card--before .support-phase-badge { background: var(--primary); color: white; }
  	  .support-card--after  .support-phase-badge { background: var(--sub-dark); color: var(--text-dark); }
  	  .support-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; color: var(--text-dark); }
  	  .support-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
  	  .support-list li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 15px;
		font-weight: 700;
		color: var(--text-dark);
  	  }
  	  .support-list .check-icon01,.support-list .check-icon02 {
		width: 24px;
		height: 24px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 11px;
		flex-shrink: 0;
  	  }
  	  .support-list .check-icon01 {
		background: var(--primary);
		color: white;

  	  }
  	  .support-list .check-icon02 {
		background: var(--sub-dark);
		color: var(--text-dark);
  	  }

  	  /* ===== SECTION F ===== */
  	  .feature-category { margin-bottom: 64px; }
  	  .feature-category:last-child { margin-bottom: 0; }
  	  .feature-category-header {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 32px;
		padding-bottom: 20px;
		border-bottom: 2px solid var(--border);
  	  }
  	  .feature-category-icon {
		width: 52px;
		height: 52px;
		background: var(--primary);
		border-radius: var(--radius);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: white;
  	  }
  	  .feature-category h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); }

  	  .feature-block {
		background: var(--white);
		border: 2px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 36px;
		margin-bottom: 24px;
		transition: border-color 0.2s, box-shadow 0.2s;
  	  }
  	  .feature-block:hover { border-color: var(--primary); box-shadow: var(--shadow); }
  	  .feature-block-title { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  	  .feature-block p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
  	  .feature-block-visual {
		background: var(--bg-section);
		border-radius: var(--radius-lg);
		padding: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 160px;
		border: 1px solid var(--border);
		color: var(--text-light);
		font-size: 14px;
		gap: 10px;
  	  }
  	  .feature-block-visual i { color: var(--primary); font-size: 22px; }
  	  .feature-imgs { display: flex; justify-content: space-between; align-items: center; gap:30px;}
	.feature-imgs img{ width: calc((100% - 30px)/2);}
  	  .icon-grid {
		display: flex;
		justify-content: flex-start;
		gap: 12px;
		margin-top: 16px;
		flex-wrap: wrap;
  	  }
  	  .icon-chip {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding: 8px 24px;
		background: var(--bg-light);
		border: 2px solid var(--primary);
		border-radius: var(--radius-xl);
		font-size: 12px;
		font-weight: 700;
		text-align: center;
		color: var(--primary);
		line-height: 1.4;
		width: fit-content;
  	  }
	  
	  .feature-effect{ display:flex; justify-content: space-between; gap:30px; margin-top:16px;}
	  .effect-box{ flex: 1; text-align: center;}
	  .effect-box strong{ font-size:14px; font-weight:700; margin-bottom:16px; color:var(--primary-dark); display:block; background: var(--primary-light); border-radius: var(--radius); padding: 8px 0;}
	  .effect-box img{ max-height: 150px; margin: 0 auto;}

  	  .screen-demo {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-top: 16px;
  	  }
  	  .screen-mock {
		background: linear-gradient(135deg, #1a2e1d, #2d8a40);
		border-radius: 16px;
		padding: 20px 16px;
		color: white;
		text-align: center;
		font-size: 13px;
		font-weight: 700;
		min-height: 120px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
  	  }
  	  .screen-mock i { font-size: 28px; }

  	  /* ===== SECTION G ===== */
  	  .crm-section-grid {
  	  }
  	  .crm-visual {
		background: linear-gradient(135deg, var(--primary-light), #e0f5e5);
		border-radius: var(--radius-xl);
		padding: 40px;
		border: 2px solid var(--primary);
  	  }
  	  .crm-cycle { display: flex; flex-direction: column; }
  	  .crm-cycle-item {
		display: flex;
		align-items: flex-start;
		gap: 16px;
		padding: 16px 0;
		border-bottom: 1px dashed var(--border);
  	  }
  	  .crm-cycle-item:last-child { border-bottom: none; }
  	  .crm-cycle-num {
		width: 32px;
		height: 32px;
		background: var(--primary);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 14px;
		font-weight: 800;
		flex-shrink: 0;
  	  }
  	  .crm-cycle-content h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
  	  .crm-cycle-content h4 i { font-size: 13px; color: var(--primary); }
  	  .crm-cycle-content p { font-size: 13px; color: var(--text-light); }

  	  /* ===== SECTION H ===== */
  	  .compare-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
	padding: 16px 20px;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}
.compare-table thead th { font-size: 15px; font-weight: 800; padding: 20px; }
.compare-table thead th:first-child { text-align: left; background: #f9fafb; }
.compare-table thead th:nth-child(2) { background: #f9fafb; color: var(--text-light); }
.compare-table thead th:nth-child(3) { background: var(--primary); color: var(--white); }
.compare-table tbody tr:hover { background: #fafafa; }
		.compare-table td{ text-align: left; color: var(--text-dark);}
.compare-table td:first-child { text-align: left; font-weight: 700; padding-left: 24px; }
.compare-table td:nth-child(3) { background: rgba(62,177,85,0.05); }
  	  .check { color: var(--primary); font-size: 17px; }
  	  .cross { color: #bbb; font-size: 16px; }
  	  .partial { color: var(--text-light); font-size: 12px; font-weight: 700; display: block; margin-top: 4px; }

  	  /* ===== SECTION I: CAMPAIGN ===== */
  	  .campaign-wrapper {
		background: linear-gradient(135deg, #1a2e1d 0%, #0f1f11 100%);
		border-radius: var(--radius-xl);
		padding: 64px 56px;
		position: relative;
		overflow: hidden;
  	  }
  	  .campaign-wrapper::before {
		content: '';
		position: absolute;
		top: -100px; right: -100px;
		width: 400px; height: 400px;
		background: radial-gradient(circle, rgba(255,241,0,0.12) 0%, transparent 70%);
  	  }
  	  .campaign-badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: var(--attention);
		color: white;
		font-size: 14px;
		font-weight: 800;
		padding: 8px 20px;
		border-radius: var(--radius);
		margin-bottom: 24px;
		animation: pulse 2s infinite;
  	  }
  	  @keyframes pulse {
		0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
		50%		 { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  	  }
  	  .campaign-title {
		font-size: clamp(24px, 4vw, 40px);
		font-weight: 800;
		color: var(--white);
		margin-bottom: 12px;
		line-height: 1.3;
  	  }
  	  .campaign-title .highlight { color: var(--sub);}
  	  .campaign-cards {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		margin: 40px 0;
  	  }
  	  .campaign-card {
		background: rgba(255,255,255,0.05);
		border: 1px solid rgba(255,255,255,0.12);
		border-radius: var(--radius-lg);
		padding: 32px;
  	  }
  	  .campaign-card-num { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-bottom: 12px; }
  	  .campaign-card h3 { font-size: 22px; font-weight: 800; color: var(--sub); margin-bottom: 8px; }
  	  .campaign-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
  	  .campaign-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 32px; line-height: 1.9; }
  	  .campaign-cta { text-align: center; margin-top: 48px; }
	  .campaign-span{ border: 2px solid var(--sub); color:var(--sub); padding:8px; margin:0 8px; font-size: clamp(18px, 2vw, 24px); vertical-align: middle;}
	  .campaign-detail{ display:flex; justify-content: flex-start; align-items: center; gap:16px; font-weight: 700;}
	  .campaign-price{ background:var(--sub); color:var(--text-dark); text-align: center; width: fit-content; padding: 8px 16px; line-height: 1.4; font-size: clamp(14px, 2vw, 18px);}
	  .campaign-privelege{ color:var(--white);}
	  .campaign-privelege strong{ font-size: clamp(48px, 4vw, 60px);}
	  

  	  .r-pl-img-la{ max-width: 100%;}
	  .r-pl-img-sm{ max-width: 300px;}
	  .r-pl-img-ss{ max-width: 150px;}
	  .repeat_img_box{ display: flex; justify-content: space-between; align-items: center; gap: 30px; width: 100%; flex-wrap: nowrap;}
	  .repeat_img_box .repeat-icon{ width:15px;}
	  .repeat_img_box .repeat-img{ width:calc((100% - 120px)/3);}

/* ===== FOOTER ===== */
footer {
	background: var(--black);
	color: var(--white);
	padding: 48px 24px 24px;
}
.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.footer-logo-mark {
	width: 44px; height: 44px;
	background: var(--primary);
	border-radius: var(--radius-sm);
	display: flex; align-items: center; justify-content: center;
	font-size: 24px;
}
.footer-logo-text img{ max-width: 150px;}
.footer-addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}
@media (max-width: 600px) { .footer-addresses { grid-template-columns: 1fr; } }
.footer-addr-label { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.footer-addr-text { font-size: 13px; color: var(--white); }
.footer-marks {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 24px;
}
.footer-mark {
	background: #333;
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
	padding: 6px 12px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}
.footer-links a {
	font-size: 13px;
	color: var(--white);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy {
	font-size: 12px;
	color: var(--white);
	padding-top: 16px;
	border-top: 1px solid var(--text-light);
}

  	  /* ===== STICKY CTA ===== */
  	  .sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
  	  .sticky-cta .btn { box-shadow: 0 8px 32px rgba(62,177,85,0.4); }

  	  /* ===== FADE UP ===== */
  	  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  	  .fade-up.visible { opacity: 1; transform: translateY(0); }

  	  /* ===== RESPONSIVE ===== */
  	  @media (max-width: 900px) {
		.hero-grid { grid-template-columns: 1fr; }
		.hero-visual { display: none; }
		.section-a-grid { grid-template-columns: 1fr; }
		.what-is-grid { grid-template-columns: 1fr; }
		.data-grid { grid-template-columns: 1fr; }
		.support-grid { grid-template-columns: 1fr; }
		.crm-section-grid { grid-template-columns: 1fr; }
		.campaign-cards { grid-template-columns: 1fr; }
		.campaign-wrapper { padding: 40px 24px; }
		.footer-inner { grid-template-columns: 1fr; gap: 32px; }
		.screen-demo { grid-template-columns: repeat(2, 1fr); }
		.section { padding: 56px 0; }
		.table-wrapper{ 
	overflow-x: auto; /* 横方向にはみ出したらスクロール */
	white-space: nowrap; /* 中身を勝手に改行させたくない場合 */
	-webkit-overflow-scrolling: touch; /* iPhoneでのスクロールを滑らかにする */
}
		.repeat_img_box,.feature-effect{ display: block;}
		.repeat_img_box .repeat-img{ width:100%;}
		.feature-imgs { flex-wrap: wrap;}
		.feature-imgs img{ width: 100%;}
		.feature-flex{ flex-wrap: wrap;}
		.feature-text{ text-align: left;}
		.feature-flex img{ max-width: 100%;}
		.effect-box{ margin-bottom: 40px;}
		.effect-box img{ max-width: 100%; max-height:none;}
		  .repeat_img_box{ text-align: center;}
		  .repeat_img_box .repeat-icon{ transform: rotate(90deg);}

  	  }
  	  @media (max-width: 600px) {
		.hero { padding: 56px 0 48px; }
		.hero-cta-group { align-items: stretch; }
		.btn--lg { padding: 18px 32px; font-size: 16px; }
		.icon-grid { grid-template-columns: repeat(2, 1fr); }
		.screen-demo { grid-template-columns: 1fr; }
		.comparison-table td, .comparison-table th { padding: 12px 10px; font-size: 12px; }
		.campaign-detail{ flex-wrap: wrap; gap: 0;}
  	  }