@charset "UTF-8";
 :root { --primary-color: #4a90e2; --primary-dark: #357abd; --secondary-color: #2ecc71; --danger-color: #e74c3c; --accent-color: #f39c12; --text-dark: #2c3e50; --text-light: #7f8c8d; --bg-light: #f8fafc; --bg-card: #ffffff; --shadow: 0 8px 32px rgba(0,0,0,0.1); --shadow-hover: 0 12px 40px rgba(0,0,0,0.15); --border-radius: 12px; --gradient: linear-gradient(135deg, #667eea 0%, #527aae 100%); }
 * { margin: 0; padding: 0; box-sizing: border-box; }
 body { font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', 'Meiryo UI', sans-serif; line-height: 1.7; color: var(--text-dark); background: var(--bg-light); overflow-x: hidden; }
 .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
 /* ヘーダーセクション */
 .hero { background: var(--gradient); color: white; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
 .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); animation: float 20s ease-in-out infinite; }
 @keyframes float { 0%, 100% { transform: translateY(0px); }
 50% { transform: translateY(-10px); }
 }
 .hero-content { position: relative; z-index: 1; }
 .hero h1 { font-size: 2.5em; font-weight: 700; margin-bottom: 20px; animation: slideInUp 0.8s ease-out; }
 .hero p { font-size: 1.2em; margin-bottom: 40px; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; animation: slideInUp 0.8s ease-out 0.2s both; }
 @keyframes slideInUp { from { opacity: 0; transform: translateY(30px); }
 to { opacity: 1; transform: translateY(0); }
 }
 .hero-icon { font-size: 4em; margin-bottom: 20px; animation: bounce 2s infinite; }
 @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
 40% { transform: translateY(-10px); }
 60% { transform: translateY(-5px); }
 }
 /* セクション共通スタイル */
 .section { padding: 80px 0; }
 .section-title { text-align: center; font-size: 2.7em; font-weight: 700; margin-bottom: 60px; color: var(--text-dark); position: relative; }
 .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--primary-color); border-radius: 2px; }
 .section-title.danger::after { background: var(--danger-color); }
/* レスポンシブ対応 */
@media (max-width: 768px) {	 .achievements-grid {	 grid-template-columns: 1fr;	 gap: 20px;	 }
 	 .authority-intro {	 padding: 20px;	 margin-bottom: 30px;	 }
 	 .authority-intro p {	 font-size: 1.1em;	 }
 	 .authority-summary p {	 font-size: 1em;	 }
}
@media (max-width: 480px) {	 .achievement-card {	 padding: 20px;	 }
 	 .achievement-icon {	 font-size: 2em;	 }
}
 /* 課題セクション */
 .problems { background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%); position: relative; }
 .problems::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warning" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 L18,16 L2,16 Z" fill="rgba(231,76,60,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23warning)"/></svg>'); }
 .problems-grid { display: grid; grid-template-columns: repeat(2, minmax(350px, 1fr)); gap: 30px; margin-top: 60px; position: relative; z-index: 1; }
 .problem-card { background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); border-left: 5px solid var(--danger-color); transition: all 0.3s ease; position: relative; }
 .problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
 .problem-icon { font-size: 2.5em; color: var(--danger-color); margin-bottom: 15px; display: block; }
 .problem-card h3 { font-size: 2em; font-weight: 600; margin-bottom: 15px; color: var(--text-dark); }
 .problem-card p { color: var(--text-light); margin-bottom: 15px; font-size:1.4em; }
 .problem-examples { background: rgba(231, 76, 60, 0.05); padding: 15px; border-radius: 8px; font-size: 0.9em; color: var(--text-light); }
/* 解決セクション */
.solution {	 background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);	 position: relative;	}
.solution::before {	 content: '';	 position: absolute;	 top: 0;	 left: 0;	 right: 0;	 bottom: 0;	 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lightbulb" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(46,204,113,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23lightbulb)"/></svg>');	}
.solution-content {	 display: grid;	 grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));	 gap: 30px;	 margin-top: 60px;	 position: relative;	 z-index: 1;	}
.solution-card {	 background: white;	 padding: 30px 25px;	 border-radius: var(--border-radius);	 box-shadow: var(--shadow);	 text-align: center;	 border-top: 4px solid var(--secondary-color);	 transition: all 0.3s ease;	}
.solution-card:hover {	 transform: translateY(-8px);	 box-shadow: var(--shadow-hover);	}
.solution-icon {	 font-size: 2.8em;	 color: var(--secondary-color);	 margin-bottom: 15px;	 display: block;	}
.solution-card h3 {	 font-size: 2em;	 font-weight: 600;	 margin-bottom: 12px;	 color: var(--text-dark);	}
.solution-card p {	 color: var(--text-light);	 font-size: 0.95em;	 line-height: 1.6; font-size:1.4em;	}
/* 権威付けセクション */
.authority {	 background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);	 position: relative;	}
.authority::before {	 content: '';	 position: absolute;	 top: 0;	 left: 0;	 right: 0;	 bottom: 0;	 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,2 15.5,8 22,8 17,12 18.5,18 12.5,14 6.5,18 8,12 3,8 9.5,8" fill="rgba(74,144,226,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');	}
.authority-content {	 position: relative;	 z-index: 1;	}
.authority-intro {	 text-align: center;	 margin-bottom: 50px;	 padding: 30px;	 background: white;	 border-radius: var(--border-radius);	 box-shadow: var(--shadow);	 border-left: 5px solid var(--primary-color);	}
.authority-intro p {	 font-size: 1.6em;	 color: var(--text-dark);	 line-height: 1.8;	 margin: 0;	}
.achievements-grid {	 display: grid;	 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));	 gap: 25px;	 margin-bottom: 40px;	}
.achievement-card {	 background: white;	 padding: 25px;	 border-radius: var(--border-radius);	 box-shadow: var(--shadow);	 text-align: center;	 border-top: 4px solid var(--primary-color);	 transition: all 0.3s ease;	 position: relative;	 overflow: hidden;	}
.achievement-card::before {	 content: '';	 position: absolute;	 top: -50%;	 left: -50%;	 width: 200%;	 height: 200%;	 background: radial-gradient(circle, rgba(74,144,226,0.05) 0%, transparent 70%);	 transform: scale(0);	 transition: transform 0.5s ease;	}
.achievement-card:hover {	 transform: translateY(-5px);	 box-shadow: var(--shadow-hover);	}
.achievement-card:hover::before {	 transform: scale(1);	}
.achievement-icon {	 font-size: 2.5em;	 color: var(--primary-color);	 margin-bottom: 15px;	 position: relative;	 z-index: 1;	}
.achievement-card h3 {	 font-size: 1.7em;	 font-weight: 600;	 margin-bottom: 10px;	 color: var(--text-dark);	 position: relative;	 z-index: 1;	}
.achievement-card p {	 color: var(--text-light);	 font-size: 0.95em;	 position: relative;	 z-index: 1;	 margin: 0;	}
.authority-summary {	 text-align: center;	 padding: 25px;	 background: rgba(74, 144, 226, 0.08);	 border-radius: var(--border-radius);	 border: 1px solid rgba(74, 144, 226, 0.1);	}
.authority-summary p {	 font-size: 1.1em;	 color: var(--text-dark);	 line-height: 1.7;	 margin: 0;	 font-weight: 500;	}

.authority-intro img {
  border-radius: 50%;
  transition: all 0.4s ease;
}

.authority-intro:hover img {
  transform: scale(1.05);
}

 /* 特長セクション */
 .features { background: white; }
 .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; }
 .feature-card { background: var(--bg-card); padding: 40px 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid rgba(74, 144, 226, 0.1); position: relative; overflow: hidden; }
 .feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-color); transform: scaleX(0); transition: transform 0.3s ease; }
 .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
 .feature-card:hover::before { transform: scaleX(1); }
 .feature-icon { font-size: 3em; color: var(--primary-color); margin-bottom: 20px; display: block; }
 .feature-card h3 { font-size: 1.6em; font-weight: 600; margin-bottom: 15px; color: var(--text-dark); }
 .feature-card p { color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
 .feature-list { list-style: none; padding: 0; }
 .feature-list li { padding: 8px 0; color: var(--text-light); position: relative; padding-left: 25px; }
 .feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
  /* プロセスセクション */
 .process { background: var(--bg-light); }
 .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
 .step { text-align: center; position: relative; }
 .step-number { width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold; margin: 0 auto 20px; position: relative; z-index: 2; }
 .step:not(:last-child)::after { content: ''; position: absolute; top: 30px; right: -15px; width: 30px; height: 2px; background: var(--primary-color); opacity: 0.3; z-index: 1; }
 .step h3 { font-size: 1.6em; margin-bottom: 10px; color: var(--text-dark); }
 .step p { color: var(--text-light); font-size: 1.2em; }

 /* サービスポイントセクション */
 .service-points { background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%); position: relative; }
 .service-points::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="check" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(46,204,113,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23check)"/></svg>'); }
 .points-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; position: relative; z-index: 1; }
 .point-card { background: white; padding: 40px 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); text-align: center; border-top: 5px solid var(--secondary-color); transition: all 0.3s ease; position: relative; overflow: hidden; }
 .point-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(46,204,113,0.05) 0%, transparent 70%); transform: scale(0); transition: transform 0.5s ease; }
 .point-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
 .point-card:hover::before { transform: scale(1); }
 .point-icon { font-size: 3.5em; color: var(--secondary-color); margin-bottom: 20px; position: relative; z-index: 1; }
 .point-card h3 { font-size: 1.7em; font-weight: 600; margin-bottom: 15px; color: var(--text-dark); position: relative; z-index: 1; }
 .point-card p { color: var(--text-light); position: relative; z-index: 1; font-size:1.3em;}
 /* 比較セクション */
 .comparison { background: white; }
 .comparison-table { max-width: 900px; margin: 60px auto 0; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow); overflow: hidden; }
 .comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: var(--gradient); color: white; font-weight: 600; }
 .comparison-header div { padding: 20px 15px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
 .comparison-header div:last-child { border-right: none; }
 .comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-bottom: 1px solid #eee; transition: background-color 0.3s ease; }
 .comparison-row:hover { background-color: rgba(74, 144, 226, 0.02); }
 .comparison-row:last-child { border-bottom: none; }
 .comparison-cell { padding: 20px 15px; text-align: center; border-right: 1px solid #eee; display: flex; align-items: center; justify-content: center; }
 .comparison-cell:first-child { text-align: left; font-weight: 500; background: rgba(74, 144, 226, 0.02); font-size: 1.4em;}
 .comparison-cell:last-child { border-right: none; }
 .comparison-good { color: var(--secondary-color); font-size: 1.4em; }
 .comparison-bad { color: var(--danger-color); font-size: 1.4em; }
 .comparison-neutral { color: var(--accent-color); font-size: 1.4em; }
.our-service { background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%); font-weight: 600; position: relative; display: flex; flex-direction: column; justify-content: flex-end; }
.our-service::before { content: '当サービス'; position: relative; align-self: center; margin-bottom: 4px; background: var(--primary-color); color: white; padding: 3px 12px; border-radius: 10px; font-size: 0.8em; font-weight: bold;}
 /* 料金セクション */
 .pricing { background: white; }
 .pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
 .pricing-card { background: var(--bg-card); padding: 40px 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); text-align: center; position: relative; border: 2px solid transparent; transition: all 0.3s ease; }
 .pricing-card.popular { border-color: var(--accent-color); transform: scale(1.05); }
 .pricing-card.popular::before { content: 'おすすめ'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-color); color: white; padding: 5px 20px; border-radius: 20px; font-size: 0.9em; font-weight: bold; }
 .pricing-title { font-size: 1.6em; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
 .pricing-amount { font-size: 2.5em; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
 .pricing-unit { color: var(--text-light); margin-bottom: 30px;font-size:1.4em; }

/* ROI情報のスタイル */
.roi-info {	 background: rgba(74, 144, 226, 0.05);	 padding: 15px;	 border-radius: 8px;	 margin-top: 20px;	 font-size: 1.3em;	 text-align: left;	}
.roi-info i {	 color: var(--primary-color);	 margin-right: 5px;	}
.roi-highlight {	 color: var(--secondary-color);	 font-weight: 600;	}
@media (max-width: 768px) {	 .solution-content {	 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));	 gap: 25px;	 }
}

 /* CTAセクション */
 .cta { background: var(--gradient); color: white; text-align: center; }
 .cta-content { max-width: 800px; margin: 0 auto; }
 .cta h2 { font-size: 2.2em; margin-bottom: 20px; }
 .cta p { font-size: 1.2em; margin-bottom: 40px; opacity: 0.95; }
 /* フォームセクション */
 .form-section { background: white; padding: 80px 0; }
 .form-container { max-width: 800px; margin: 0 auto; background: var(--bg-card); padding: 60px 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
 .form-intro { text-align: center; margin-bottom: 40px; }
 .form-intro p { color: var(--text-light); margin-bottom: 20px; }
 .form-group { margin-bottom: 25px; }
 .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); font-size: 1.5em; }
 .required { color: var(--danger-color); font-weight: bold; }
 .form-group input[type="text"], .form-group input[type="email"], .form-group textarea, .form-group select { width: 100%; padding: 15px; border: 2px solid #e1e8ed; border-radius: 8px; font-size: 1em; font-family: inherit; transition: all 0.3s ease; background: white; }
 .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1); }
 .form-group textarea { resize: vertical; min-height: 120px; }
 .checkbox-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 10px; }
 .checkbox-item { display: flex; align-items: center; }
 .checkbox-item input[type="checkbox"] { margin-right: 10px; transform: scale(1.2); }
 .form-example { background: rgba(74, 144, 226, 0.05); padding: 15px; border-radius: 8px; margin-top: 10px; font-size: 1.3em; color: var(--text-light); }
 .submit-btn { background: var(--primary-color); color: white; padding: 18px 40px; font-size: 1.1em; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; width: 100%; position: relative; overflow: hidden; margin-top: 30px; }
 .submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
 .submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3); }
 .submit-btn:hover::before { left: 100%; }
 .submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
 /* エラー表示 */
 .error { color: var(--danger-color); font-size: 0.9em; margin-top: 5px; display: none; }
 .form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: var(--danger-color); box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1); }
 .form-group.has-error .error { display: block; }
 /* 送信中の表示 */
 .loading { display: none; text-align: center; padding: 20px; }
 .loading i { font-size: 2em; color: var(--primary-color); animation: spin 1s linear infinite; }
 @keyframes spin { 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
 }
 /* 注意事項セクション */
 .notes { background: var(--bg-light); padding: 60px 0; }
 .notes-content { max-width: 900px; margin: 0 auto; }
 .notes h3 { color: var(--text-dark); margin-bottom: 20px; font-size: 1.3em; }
 .notes ul { list-style: none; padding: 0; }
 .notes li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); position: relative; padding-left: 30px; }
 .notes li::before { content: '・'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; font-size: 1.2em; }
 /* モーダル */
 #modalOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; z-index: 1000; justify-content: center; align-items: center; }
 #modalMessage { background: white; padding: 40px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow-hover); max-width: 400px; margin: 20px; }
 #modalMessage i { font-size: 3em; color: var(--secondary-color); margin-bottom: 20px; }
 #modalMessage h3 { margin-bottom: 15px; color: var(--text-dark); }
 #modalMessage p { color: var(--text-light); margin-bottom: 25px; }
 #closeModal { background: var(--primary-color); color: white; padding: 12px 30px; border: none; border-radius: 6px; cursor: pointer; font-size: 1em; transition: background 0.3s ease; }
 #closeModal:hover { background: var(--primary-dark); }
 /* フッター */
 footer { background: var(--text-dark); color: white; text-align: center; padding: 30px 0; }
 /* レスポンシブ対応 */
 @media (max-width: 768px) { .hero h1 { font-size: 2em; }
 .hero p { font-size: 1.1em; }
 .section-title { font-size: 1.8em; }
 .features-grid { grid-template-columns: 1fr; gap: 30px; }
 .problems-grid { grid-template-columns: 1fr; }
 .points-grid { grid-template-columns: 1fr; }
 .comparison-header, .comparison-row { grid-template-columns: 1fr; text-align: left; }
 .comparison-cell { border-right: none; border-bottom: 1px solid #eee; text-align: left; justify-content: flex-start; }
 .comparison-cell:first-child { background: var(--primary-color); color: white; font-weight: 600; }
 .form-container { padding: 40px 20px; }
 .step:not(:last-child)::after { display: none; }
 .pricing-card.popular { transform: none; }
 .checkbox-group { grid-template-columns: 1fr; }
 }
 @media (max-width: 480px) { .container { padding: 0 15px; }
 .hero { padding: 60px 0; }
 .section { padding: 60px 0; }
 }
 /* 追加のマイクロアニメーション */
 .feature-card.animate, .problem-card.animate, .point-card.animate { animation: slideInUp 0.6s ease-out forwards; }
 .submit-btn:active { transform: translateY(0); }
 .pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
 .step:hover .step-number { transform: scale(1.1); box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3); }
 .problem-card:hover .problem-icon { animation: shake 0.5s ease-in-out; }
 @keyframes shake { 0%, 100% { transform: translateX(0); }
 25% { transform: translateX(-5px); }
 75% { transform: translateX(5px); }
 }
 .point-card:hover .point-icon { animation: pulse 1s ease-in-out infinite; }
 @keyframes pulse { 0% { transform: scale(1); }
 50% { transform: scale(1.1); }
 100% { transform: scale(1); }
 }
 ::-webkit-scrollbar { width: 8px; }
 ::-webkit-scrollbar-track { background: #f1f1f1; }
 ::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
 ::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }





  /* フォーカス時のスタイル追加 */
  .form-group.focused input,  .form-group.focused textarea,  .form-group.focused select {    border-color: var(--primary-color);    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);  }
  /* アニメーションクラス */
  .feature-card.animate,  .problem-card.animate,  .point-card.animate {    animation: slideInUp 0.6s ease-out forwards;  }
  /* 追加のマイクロアニメーション */
  .submit-btn:active {    transform: translateY(0);  }
  .pricing-card:hover {    transform: translateY(-10px);    box-shadow: var(--shadow-hover);  }
  .step:hover .step-number {    transform: scale(1.1);    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);  }
  /* 問題カードのアニメーション */
  .problem-card:hover .problem-icon {    animation: shake 0.5s ease-in-out;  }
  @keyframes shake {    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
  }
  /* ポイントカードのパルス効果 */
  .point-card:hover .point-icon {    animation: pulse 1s ease-in-out infinite;  }
  @keyframes pulse {    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  /* スクロールバーのカスタマイズ */
  ::-webkit-scrollbar {    width: 8px;  }
  ::-webkit-scrollbar-track {    background: #f1f1f1;  }
  ::-webkit-scrollbar-thumb {    background: var(--primary-color);    border-radius: 4px;  }
  ::-webkit-scrollbar-thumb:hover {    background: var(--primary-dark);  }
  /* チェックボックスのカスタマイズ */
  .checkbox-item input[type="checkbox"] {    accent-color: var(--primary-color);  }
  /* フォームの視覚的改善 */
  .form-group input:valid,  .form-group textarea:valid {    border-color: var(--secondary-color);  }
  .form-group input:invalid:not(:focus),  .form-group textarea:invalid:not(:focus) {    border-color: #e1e8ed;  }
  /* ローディングアニメーション */
  @keyframes spin {    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  /* モーダルアニメーション */
  #modalOverlay {    backdrop-filter: blur(5px);  }
  #modalMessage {    transform: scale(0.8);    transition: transform 0.3s ease;  }
  #modalOverlay.show #modalMessage {    transform: scale(1);  }
/* ヒーローCTAスタイル */
.hero-cta {  margin-top: 40px;  text-align: center;}
.cta-button {  display: inline-block;  padding: 18px 40px;  font-size: 1.2em;  font-weight: 600;  text-decoration: none;  border-radius: 50px;  transition: all 0.3s ease;  position: relative;  overflow: hidden;  box-shadow: 0 8px 25px rgba(0,0,0,0.15);}
.cta-button.primary {  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);  color: white;}
.cta-button.secondary {  background: white;  color: var(--primary-color);  border: 2px solid var(--primary-color);}
.cta-button.urgent {  background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);  color: white;  animation: pulse-glow 2s infinite;}
.cta-button:hover {  transform: translateY(-3px);  box-shadow: 0 12px 35px rgba(0,0,0,0.2);}
.cta-button::before {  content: '';  position: absolute;  top: 0;  left: -100%;  width: 100%;  height: 100%;  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);  transition: left 0.5s ease;}
.cta-button:hover::before {  left: 100%;}
.hero-offer {  margin-top: 15px;  background: rgba(255,193,7,0.1);  color: #856404;  padding: 10px 20px;  border-radius: 25px;  display: inline-block;  font-weight: 600;  border: 2px solid rgba(255,193,7,0.3);}
@keyframes pulse-glow {  0% { box-shadow: 0 8px 25px rgba(220,53,69,0.3); }
  50% { box-shadow: 0 8px 35px rgba(220,53,69,0.5); }
  100% { box-shadow: 0 8px 25px rgba(220,53,69,0.3); }
}
/* 成功事例セクション */
.success-stories {  background: white;}
.stories-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));  gap: 30px;  margin-bottom: 60px;}
.story-card {  background: var(--bg-card);  padding: 30px;  border-radius: var(--border-radius);  box-shadow: var(--shadow);  transition: all 0.3s ease;  border-left: 5px solid var(--secondary-color);}
.story-card:hover {  transform: translateY(-5px);  box-shadow: var(--shadow-hover);}
.story-header {  display: flex;  align-items: center;  margin-bottom: 20px;}
.story-icon {  width: 50px;  height: 50px;  background: var(--secondary-color);  color: white;  border-radius: 50%;  display: flex;  align-items: center;  justify-content: center;  margin-right: 15px;  font-size: 1.3em;}
.story-company h3 {  margin: 0 0 5px 0;  color: var(--text-dark);  font-size: 1.2em;}
.story-category {  color: var(--text-light);  font-size: 0.9em;}
.story-content h4 {  color: var(--text-dark);  margin-bottom: 10px;  font-size: 1.1em;}
.story-content p {  color: var(--text-light);  margin-bottom: 20px;}
.story-results {  background: rgba(46, 204, 113, 0.05);  padding: 15px;  border-radius: 8px;}
.result-item {  display: flex;  align-items: center;  justify-content: center;  margin-bottom: 10px;  font-size: 1.1em;}
.result-before {  background: var(--danger-color);  color: white;  padding: 8px 15px;  border-radius: 20px;  font-weight: 600;}
.result-after {  background: var(--secondary-color);  color: white;  padding: 8px 15px;  border-radius: 20px;  font-weight: 600;}
.result-item i {  margin: 0 15px;  color: var(--text-light);}
.result-description {  text-align: center;  color: var(--secondary-color);  font-weight: 600;}
.success-stats {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  gap: 30px;  text-align: center;}
.stat-item {  background: white;  padding: 30px;  border-radius: var(--border-radius);  box-shadow: var(--shadow);  border-top: 4px solid var(--primary-color);}
.stat-number {  font-size: 2.5em;  font-weight: 700;  color: var(--primary-color);  margin-bottom: 10px;}
.stat-label {  color: var(--text-light);  font-weight: 500;}
/* お客様の声セクション */
.testimonials {  background: var(--bg-light);}
.testimonials-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;}
.testimonial-card {  background: white;  padding: 30px;  border-radius: var(--border-radius);  box-shadow: var(--shadow);  transition: all 0.3s ease;  position: relative;}
.testimonial-card:hover {  transform: translateY(-5px);  box-shadow: var(--shadow-hover);}
.testimonial-content {  margin-bottom: 20px;  position: relative;}
.quote-icon {  position: absolute;  top: -10px;  left: -10px;  font-size: 2em;  color: var(--primary-color);  opacity: 0.3;}
.testimonial-content p {  color: var(--text-dark);  font-style: italic;  line-height: 1.7;  margin-left: 20px;}
.testimonial-author {  display: flex;  justify-content: space-between;  align-items: center;}
.author-info h4 {  margin: 0 0 5px 0;  color: var(--text-dark);}
.author-info span {  color: var(--text-light);  font-size: 0.9em;}
.rating {  color: #ffc107;}
/* 限定オファーセクション */
.limited-offer {  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);  text-align: center;  position: relative;}
.limited-offer::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gift" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,193,7,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gift)"/></svg>');}
.offer-content {  position: relative;  z-index: 1;  max-width: 700px;  margin: 0 auto;}
.offer-badge {  display: inline-block;  background: var(--danger-color);  color: white;  padding: 8px 20px;  border-radius: 20px;  font-weight: 600;  margin-bottom: 20px;}
.offer-content h2 {  color: var(--text-dark);  margin-bottom: 30px;  font-size: 2em;}
.offer-details {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  gap: 20px;  margin-bottom: 40px;}
.offer-item {  background: white;  padding: 20px;  border-radius: var(--border-radius);  box-shadow: var(--shadow);  display: flex;  align-items: center;  justify-content: center;  flex-direction: column;}
.offer-item i {  font-size: 2em;  color: var(--accent-color);  margin-bottom: 10px;}
.offer-cta {  margin-top: 30px;}
.offer-note {  margin-top: 15px;  color: var(--text-light);  font-size: 0.9em;}
/* 中間CTAセクション */
.mid-cta {  background: var(--primary-color);  color: white;  text-align: center;}
.mid-cta-content h2 {  margin-bottom: 15px;  font-size: 1.8em;}
.mid-cta-content p {  margin-bottom: 30px;  opacity: 0.9;  font-size: 1.1em;}
.cta-buttons {  display: flex;  gap: 20px;  justify-content: center;  flex-wrap: wrap;}
/* FAQセクション */
.faq {  background: white;}
.faq-container {  max-width: 800px;  margin: 0 auto;}
.faq-item {  background: white;  border: 1px solid #e1e8ed;  border-radius: var(--border-radius);  margin-bottom: 15px;  transition: all 0.3s ease;}
.faq-item:hover {  box-shadow: var(--shadow);}
.faq-question {  padding: 25px 30px;  cursor: pointer;  display: flex;  justify-content: space-between;  align-items: center;  background: rgba(74, 144, 226, 0.02);  transition: all 0.3s ease;}
.faq-question:hover {  background: rgba(74, 144, 226, 0.05);}
.faq-question h3 {  margin: 0;  color: var(--text-dark);  font-size: 1.1em;  font-weight: 600;}
.faq-question i {  color: var(--primary-color);  transition: transform 0.3s ease;}
.faq-item.active .faq-question i {  transform: rotate(180deg);}
.faq-answer {  padding: 0 30px;  max-height: 0;  overflow: hidden;  transition: all 0.3s ease;}
.faq-item.active .faq-answer {  padding: 0 30px 25px 30px;  max-height: 500px;}
.faq-answer p {  color: var(--text-dark);  margin-bottom: 15px;  line-height: 1.6;}
.faq-answer ul {  margin: 10px 0;  padding-left: 20px;}
.faq-answer li {  color: var(--text-light);  margin-bottom: 8px;  line-height: 1.5;}
/* レスポンシブ対応 */
@media (max-width: 768px) {  .stories-grid {    grid-template-columns: 1fr;  }
    .success-stats {    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));  }
    .testimonials-grid {    grid-template-columns: 1fr;  }
    .offer-details {    grid-template-columns: 1fr;  }
    .cta-buttons {    flex-direction: column;    align-items: center;  }
    .cta-button {    width: 100%;    max-width: 300px;  }
    .result-item {    flex-direction: column;    gap: 10px;  }
    .result-item i {    transform: rotate(90deg);  }
    .faq-question {    padding: 20px;  }
    .faq-answer {    padding: 0 20px;  }
    .faq-item.active .faq-answer {    padding: 0 20px 20px 20px;  }
}
@media (max-width: 480px) {  .hero-cta {    margin-top: 30px;  }
    .cta-button {    padding: 15px 30px;    font-size: 1.1em;  }
    .story-card {    padding: 20px;  }
    .testimonial-card {    padding: 20px;  }
    .offer-content h2 {    font-size: 1.6em;  }
    .stat-number {    font-size: 2em;  }
}


/* アニメーション用のCSS追加 */
.animate-fade-in {  animation: fadeInUp 0.6s ease-out forwards;}
@keyframes fadeInUp {  from {    opacity: 0;    transform: translateY(30px);  }
  to {    opacity: 1;    transform: translateY(0);  }
}
.hover-effect {  transform: translateY(-3px) scale(1.02);}
/* 追加のマイクロアニメーション */
.stat-number {  animation: countUp 1s ease-out;}
@keyframes countUp {  from {    transform: scale(0.5);    opacity: 0;  }
  to {    transform: scale(1);    opacity: 1;  }
}
.testimonial-card::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  height: 4px;  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));  border-radius: var(--border-radius) var(--border-radius) 0 0;}
.story-card::after {  content: '';  position: absolute;  bottom: -5px;  left: 50%;  transform: translateX(-50%);  width: 50px;  height: 3px;  background: var(--secondary-color);  border-radius: 2px;  opacity: 0;  transition: opacity 0.3s ease;}
.story-card:hover::after {  opacity: 1;}
