中古車輸出ビジネスの基礎編

世界に挑め — 中古車輸出で最初の一台を売ろう

スマホ一つで海外バイヤーと直結。実務で使える知識をステップごとに学んで、最初の商談を勝ち取る。さあ、やる気のあるあなたへ。

全ての章にそれぞれ魅力的な内容が書かれているので、いつでもどこからでも気になるトピックから学べます。

/* Scoped styles for the TOC hero */ #toc-hero { background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.18)), url(‘https://www.telework.info/wp-content/uploads/sites/6/2025/11/mainimg.jpg’) center/cover no-repeat; color: #fff; padding: 64px 18px; font-family: “Noto Sans JP”, system-ui, sans-serif; text-align: center; position: relative; overflow: hidden; } #toc-hero::after{ /* subtle decorative diagonal stripe */ content:””; position:absolute; inset:0; background: linear-gradient(120deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.00) 50%, rgba(255,255,255,0.02) 100%); pointer-events:none; } .toc-hero-inner { max-width: 980px; margin: 0 auto; } .toc-copy { display:inline-block; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); padding: 34px 28px; border-radius: 14px; box-shadow: 0 10px 30px rgba(2,18,34,0.25); transform: translateY(0); transition: transform 0.45s cubic-bezier(.2,.9,.3,1); } @media (max-width:720px){ .toc-copy { padding: 22px 16px; width: calc(100% – 32px); } } #toc-hero-title { font-size: 1.85rem; line-height: 1.08; margin: 0 0 10px; letter-spacing: -0.015em; font-weight: 800; color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,0.45); } .toc-lead { margin: 0 0 20px; font-size: 1.03rem; color: rgba(255,255,255,0.92); max-width: 720px; } .toc-ctas { display:flex; gap:12px; justify-content:center; align-items:center; flex-wrap:wrap; margin-top:12px; } .btn-primary { background: linear-gradient(90deg,#ff7aa3,#ff4f7a); color:#fff; padding:12px 18px; border-radius:999px; text-decoration:none; font-weight:700; box-shadow: 0 8px 20px rgba(255,80,120,0.18); transition: transform .12s ease, box-shadow .12s ease; } .btn-primary:active { transform: translateY(1px); } .btn-primary:hover { box-shadow: 0 12px 30px rgba(255,80,120,0.22); } .btn-ghost { background: transparent; color: #fff; padding:10px 14px; border-radius:999px; text-decoration:none; border:1px solid rgba(255,255,255,0.18); font-weight:600; transition: background .12s; } .btn-ghost:hover { background: rgba(255,255,255,0.05); } .toc-note { font-size:0.9rem; color: rgba(255,255,255,0.8); margin-top:14px; } /* entrance motion when hero scrolls into view (light) */ @media (prefers-reduced-motion: no-preference){ #toc-hero.show .toc-copy { transform: translateY(-6px); } } // Simple reveal class for a tiny entrance effect when the section is in view (function(){ const hero = document.getElementById(‘toc-hero’); if(!hero) return; function reveal(){ hero.classList.add(‘show’); window.removeEventListener(‘load’,reveal); } if(document.readyState === ‘complete’){ reveal(); } else { window.addEventListener(‘load’,reveal); } })();

目次

ul.index { list-style: none; padding: 0; margin: 40px auto; max-width: 700px; background: #fff; border: 1px solid #E85FA4; border-radius: 20px; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05); overflow: hidden; } ul.index li { position: relative; margin: 0; padding: 18px 24px; font-family: “Noto Sans JP”, sans-serif; font-weight: 500; color: #444; border-bottom: 1px solid #f0f0f5; transition: all 0.3s ease; } /* 偶数・奇数で交互に淡いピンクと白 */ ul.index li:nth-child(odd) { background: #fffafc; } ul.index li:nth-child(even) { background: #fff0f7; } ul.index li:last-child { border-bottom: none; } ul.index li::before { content: “🚗”; margin-right: 10px; font-size: 1.1em; transition: transform 0.3s ease; } /* hover時の可愛いグラデーションとふわっと浮く効果 */ ul.index li:hover { background: linear-gradient(90deg, #e8f3ff, #ffe6f3); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(125, 185, 255, 0.25); } ul.index li:hover::before { transform: rotate(10deg) scale(1.1); } ul.index li a { text-decoration: none; color: #004b80; display: block; font-size: 1.05em; transition: color 0.3s ease; } ul.index li a:hover { color: #ff6fb5; }