.cc-page {
--blue: #6082B6; --navy: #1a2b42; --dark: #0f172a; --white: #ffffff;
--text: #64748b; --line: #e2e8f0; --bg: #f8fafc;
--shadow: rgba(30,41,59,.10);
--glass: rgba(255,255,255,.06); --glass-b: rgba(255,255,255,.15);
--blue-dim: rgba(96,130,182,.08);
--font: 'Manrope', system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
--ease: cubic-bezier(.16,1,.3,1); --ease-out: cubic-bezier(.33,1,.68,1);
--spring: cubic-bezier(.34,1.56,.64,1);
display: block; width: 100%; font-family: var(--font); color: var(--dark);
line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip;
}
.cc-page *, .cc-page *::before, .cc-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.cc-page img { max-width: 100%; height: auto; display: block; }
.cc-page a { text-decoration: none; color: inherit; }
.cc-page:not(.js-ready) [data-reveal] { opacity: 1!important; transform: none!important; }
.cc-page [data-reveal] { opacity: 0; transition: opacity .35s var(--ease-out), transform .35s var(--ease-out); }
.cc-page [data-reveal="up"] { transform: translateY(24px); }
.cc-page [data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.cc-page .cc-progress { position: fixed; top: 0; left: 0; width: 0%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--navy)); z-index: 9999; pointer-events: none; will-change: width; }
.cc-page .cc-divider { width: 100%; max-width: 1280px; margin: 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); position: relative; overflow: hidden; }
.cc-page .cc-divider::after { content: ''; position: absolute; inset: 0; left: -100%; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.cc-page .cc-divider.is-visible::after { animation: ccShimmer 1.4s var(--ease) forwards; }
@keyframes ccZoomOut { from { transform: scale(1.1); } to { transform: scale(1); } }
@keyframes ccSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes ccShimmer { 0% { left: -100%; opacity: 1; } 100% { left: 100%; opacity: 0; } }
.cc-page #biz-hero { position: relative; width: 100%; height: 60vh; min-height: 500px; display: flex; justify-content: center; align-items: center; overflow: hidden; color: var(--white); background: var(--dark); }
.cc-page #biz-hero .hero-bg { position: absolute; inset: 0; z-index: 1; background: url('https://www.can-chem.com/wp-content/uploads/2026/01/Background_JH_Site-e1769640028170.webp') center/cover no-repeat; animation: ccZoomOut 10s ease-out forwards; filter: saturate(.4) brightness(.85); will-change: transform; }
.cc-page #biz-hero .hero-dim { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(15,23,42,.5), rgba(15,23,42,.85)); }
.cc-page #biz-hero .hero-card { position: relative; z-index: 3; width: 90%; max-width: 700px; padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 40px); background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-b); border-radius: 20px; box-shadow: 0 24px 48px rgba(0,0,0,.2); text-align: center; opacity: 0; transform: translateY(30px); animation: ccSlideUp 1s var(--ease) .3s forwards; }
.cc-page #biz-hero .hero-tag { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; display: block; }
.cc-page #biz-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 16px; color: var(--white); line-height: 1; }
.cc-page #biz-hero .hero-desc { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 400; line-height: 1.5; color: rgba(255,255,255,.85); margin: 0 auto; max-width: 90%; }
@media(max-width:1024px) { .cc-page #biz-hero { height: auto; min-height: 50vh; padding: 100px 0 60px; } }
.cc-page #biz-pillars { padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem); background: var(--white); }
.cc-page #biz-pillars .pillars-inner { max-width: 1200px; margin: 0 auto; }
.cc-page #biz-pillars .pillars-header { margin-bottom: clamp(3rem, 5vw, 4rem); }
.cc-page #biz-pillars .pillars-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); margin-bottom: 1rem; display: block; opacity: .7; }
.cc-page #biz-pillars .pillars-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.cc-page #biz-pillars .pillars-title strong { font-weight: 700; }
.cc-page .pillar-row { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); padding: clamp(2rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: all .5s var(--ease); cursor: pointer; }
.cc-page .pillar-row:first-of-type { border-top: 1px solid var(--line); }
.cc-page .pillar-row::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue-dim), transparent 70%); opacity: 0; transition: opacity .5s var(--ease); z-index: 0; }
.cc-page .pillar-row:hover::before { opacity: 1; }
.cc-page .pillar-row:hover { padding-left: clamp(1rem, 2vw, 2rem); }
.cc-page .pillar-row > * { position: relative; z-index: 1; }
.cc-page .pillar-idx { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 300; color: var(--line); letter-spacing: -.02em; line-height: 1; min-width: 70px; transition: color .4s var(--ease); font-variant-numeric: tabular-nums; }
.cc-page .pillar-row:hover .pillar-idx { color: var(--blue); }
.cc-page .pillar-body { flex: 1; }
.cc-page .pillar-name { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: .4rem; transition: color .4s var(--ease); }
.cc-page .pillar-row:hover .pillar-name { color: var(--blue); }
.cc-page .pillar-desc { font-size: clamp(.88rem, 1.2vw, 1rem); color: var(--text); line-height: 1.6; max-width: 560px; }
.cc-page .pillar-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0; transform: translateX(-12px); transition: all .4s var(--spring); }
.cc-page .pillar-arrow svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--spring); }
.cc-page .pillar-row:hover .pillar-arrow { opacity: 1; transform: none; border-color: var(--blue); box-shadow: 0 4px 12px rgba(96,130,182,.15); }
.cc-page .pillar-row:hover .pillar-arrow svg { transform: translateX(2px); }
@media(max-width:600px) { .cc-page .pillar-idx { font-size: 2rem; min-width: 40px; } .cc-page .pillar-arrow { display: none; } }
.cc-page #biz-stats { padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem); background: var(--white); }
.cc-page #biz-stats .stats-inner { max-width: 1200px; margin: 0 auto; }
.cc-page #biz-stats .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cc-page #biz-stats .stat-cell { padding: clamp(2rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; transition: background .3s; }
.cc-page #biz-stats .stat-cell:hover { background: rgba(96,130,182,.02); }
.cc-page #biz-stats .stat-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: .5rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.cc-page #biz-stats .stat-suffix { color: var(--blue); font-size: .4em; margin-left: 2px; vertical-align: super; font-weight: 500; }
.cc-page #biz-stats .stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text); font-weight: 700; }
@media(max-width:900px) { .cc-page #biz-stats .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .cc-page #biz-stats .stats-grid { grid-template-columns: 1fr; border: none; } .cc-page #biz-stats .stat-cell { border: 1px solid var(--line); border-radius: 10px; margin-bottom: .75rem; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; text-align: left; } .cc-page #biz-stats .stat-num { margin: 0; font-size: 2rem; } .cc-page #biz-stats .stat-label { text-align: right; } }
.cc-page #biz-edge { padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem); background: var(--white); }
.cc-page #biz-edge .edge-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.cc-page #biz-edge .edge-sticky { position: sticky; top: 100px; }
.cc-page #biz-edge .edge-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); display: block; margin-bottom: 1rem; opacity: .7; }
.cc-page #biz-edge .edge-title { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.08; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.cc-page #biz-edge .edge-intro { margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); padding-bottom: 2rem; }
.cc-page #biz-edge .edge-intro h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--blue); margin: 0 0 .8rem; line-height: 1.2; }
.cc-page #biz-edge .edge-intro p { font-size: 1.05rem; line-height: 1.7; color: var(--text); max-width: 90%; }
.cc-page #biz-edge .edge-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.cc-page #biz-edge .edge-card { padding: clamp(1.5rem, 3vw, 2rem); background: var(--white); border: 1px solid var(--line); border-radius: 10px; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.cc-page #biz-edge .edge-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); opacity: .2; transition: opacity .3s; }
.cc-page #biz-edge .edge-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -10px var(--shadow); border-color: rgba(96,130,182,.2); }
.cc-page #biz-edge .edge-card:hover::before { opacity: 1; }
.cc-page #biz-edge .edge-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0 0 .5rem; line-height: 1.3; }
.cc-page #biz-edge .edge-card p { font-size: .9rem; line-height: 1.65; color: var(--text); margin: 0; }
@media(max-width:900px) { .cc-page #biz-edge .edge-inner { grid-template-columns: 1fr; } .cc-page #biz-edge .edge-sticky { position: static; margin-bottom: 1rem; } .cc-page #biz-edge .edge-intro p { max-width: 100%; } }
/* ── FAQ CSS (Enhanced) ── */
.cc-page #biz-faq { padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem); background: var(--bg); position: relative; overflow: hidden; }
.cc-page #biz-faq::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(96,130,182,.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cc-page #biz-faq::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(96,130,182,.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cc-page #biz-faq .faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; position: relative; z-index: 1; }
.cc-page #biz-faq .faq-header { text-align: left; position: sticky; top: 100px; }
.cc-page #biz-faq .faq-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); display: block; margin-bottom: .75rem; opacity: .7; }
.cc-page #biz-faq .faq-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 1rem; }
.cc-page #biz-faq .faq-subtitle { font-size: 1rem; line-height: 1.65; color: var(--text); margin-bottom: 2rem; max-width: 320px; }
.cc-page #biz-faq .faq-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; background: var(--navy); color: var(--white); font-size: .85rem; font-weight: 600; border-radius: 8px; letter-spacing: .02em; transition: all .3s var(--ease); box-shadow: 0 4px 12px rgba(26,43,66,.15); }
.cc-page #biz-faq .faq-cta:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(96,130,182,.25); }
.cc-page #biz-faq .faq-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .3s var(--spring); }
.cc-page #biz-faq .faq-cta:hover svg { transform: translateX(3px); }
.cc-page #biz-faq .faq-list { display: flex; flex-direction: column; gap: .75rem; }
.cc-page #biz-faq .faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); overflow: hidden; transition: all .4s var(--ease); box-shadow: 0 1px 3px rgba(30,41,59,.04); }
.cc-page #biz-faq .faq-item:first-of-type { border-top: 1px solid var(--line); }
.cc-page #biz-faq .faq-item:hover { border-color: rgba(96,130,182,.25); box-shadow: 0 8px 24px -6px rgba(96,130,182,.1); }
.cc-page #biz-faq .faq-item[open] { border-color: rgba(96,130,182,.3); box-shadow: 0 12px 32px -8px rgba(96,130,182,.12); background: linear-gradient(135deg, var(--white) 0%, rgba(96,130,182,.02) 100%); }
.cc-page #biz-faq .faq-q { padding: 1.4rem 1.6rem; font-size: 1.05rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; transition: color .3s; }
.cc-page #biz-faq .faq-q::-webkit-details-marker { display: none; }
.cc-page #biz-faq .faq-q:hover { color: var(--blue); }
.cc-page #biz-faq .faq-q-text { display: flex; align-items: center; gap: 1rem; flex: 1; }
.cc-page #biz-faq .faq-num { font-size: .7rem; font-weight: 700; color: var(--blue); background: var(--blue-dim); width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: 0; transition: all .3s var(--ease); }
.cc-page #biz-faq .faq-item[open] .faq-num { background: var(--blue); color: var(--white); }
.cc-page #biz-faq .faq-icon-wrap { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s var(--ease); }
.cc-page #biz-faq .faq-item[open] .faq-icon-wrap { background: var(--blue-dim); }
.cc-page #biz-faq .faq-icon { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2.5; transition: transform .4s var(--spring), stroke .3s; flex-shrink: 0; }
.cc-page #biz-faq .faq-item[open] .faq-icon { transform: rotate(45deg); stroke: var(--blue); }
.cc-page #biz-faq .faq-item[open] .faq-q { color: var(--blue); }
.cc-page #biz-faq .faq-a { padding: 0 1.6rem 1.6rem 4.4rem; font-size: .95rem; line-height: 1.7; color: var(--text); animation: ccFaqReveal .4s var(--ease-out); }
.cc-page #biz-faq .faq-a p { margin: 0; }
@keyframes ccFaqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width:900px) { .cc-page #biz-faq .faq-inner { grid-template-columns: 1fr; } .cc-page #biz-faq .faq-header { position: static; text-align: center; margin-bottom: .5rem; } .cc-page #biz-faq .faq-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; } .cc-page #biz-faq .faq-cta { margin: 0 auto; } }
@media(max-width:600px) { .cc-page #biz-faq .faq-q { padding: 1.2rem 1.2rem; font-size: .95rem; } .cc-page #biz-faq .faq-a { padding: 0 1.2rem 1.4rem 1.2rem; } .cc-page #biz-faq .faq-num { width: 24px; height: 24px; font-size: .65rem; border-radius: 6px; } }
.cc-page a:focus-visible, .cc-page button:focus-visible, .cc-page summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
@media(prefers-reduced-motion:reduce) { .cc-page [data-reveal] { opacity: 1!important; transform: none!important; transition: none!important; } .cc-page *, .cc-page *::before, .cc-page *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; } .cc-page .cc-progress { display: none; } }
Canchem
当社の事業
テクノロジーの未来に不可欠な材料
私たちの活動
私たちは高品質に重点を置いています
マンツーマンプレミアムサービス
CanChem は、半導体およびエレクトロニクス業界向けに高品質の電子化学薬品と先端材料の提供を専門としています。
GMP認定製造
当社の GMP 施設では、鈴木カップリング、ホフマン転位、高温プロセス (>250℃)、超低温反応 (-78℃) などの複雑な反応に対応しています。
広範な供給ネットワーク
中国全土にわたる包括的なサプライヤー ネットワークにより、当社はお客様の特定の要件を満たす製品を迅速に調達し、タイムリーな納品と競争力のある価格を保証します。.
フローケミストリーとカスタムソリューション
当社は、高度なフロー化学システムと社内研究所を備え、コンセプトから商品化までエンドツーエンドのカスタム プロジェクト開発を提供します。.
01
主にどのような業界のお客様にご利用いただいていますか?
当社は主に半導体、エレクトロニクス、製薬業界向けに、厳格な基準に準拠した高品質の化学中間体および先端材料を提供しています。.
02
カスタム合成サービスを提供していますか?
はい、当社のCDMO部門は、高度なフローケミストリー技術を用いて、実験室での発見やコンセプト開発から商業規模での製造まで、エンドツーエンドの完全な合成プロセスを提供しています。.
03
貴社の製造施設は認証を受けていますか?
もちろんです。当社は2,500平方メートルのGMP認証取得済み施設を運営しており、-78℃から250℃を超える極端な温度プロセスを含む、複雑な反応を安全かつ効率的に処理するための設備を完備しています。.
04
信頼性の高いグローバル配送をどのように実現していますか?
当社は中国全土に広がる高度に統合されたサプライネットワークを活用し、迅速な資材調達と大量生産を可能にしています。当社の物流に関する専門知識と組み合わせることで、世界規模でのタイムリーな配送と競争力のある価格を実現しています。.
(function(){
'use strict';
var P = document.querySelector('.cc-page');
if(!P || P.dataset.ccInit) return;
P.dataset.ccInit = 'true';
function init(){
P.classList.add('js-ready');
var isReduced = window.matchMedia('(prefers-reduced-motion:reduce)').matches;
if(isReduced){
P.querySelectorAll('[data-reveal]').forEach(function(el){ el.classList.add('is-visible'); });
return;
}
/* ── 1. Scroll Reveal ── */
var io = new IntersectionObserver(function(entries){
entries.forEach(function(e){
if(e.isIntersecting){
if(e.target.classList.contains('cc-divider')){
e.target.classList.remove('is-visible');
void e.target.offsetWidth;
}
e.target.classList.add('is-visible');
}
});
}, { threshold: 0, rootMargin: '0px 0px -60px 0px' });
P.querySelectorAll('[data-reveal]').forEach(function(el){ io.observe(el); });
/* ── 2. Progress Bar ── */
var bar = P.querySelector('.cc-progress');
if(bar){
var bT = false;
window.addEventListener('scroll', function(){
if(!bT){
requestAnimationFrame(function(){
var m = document.documentElement.scrollHeight - window.innerHeight;
bar.style.width = m > 0 ? (window.scrollY / m * 100) + '%' : '0%';
bT = false;
});
bT = true;
}
}, { passive: true });
}
}
if(document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); }
else { setTimeout(init, 0); }
})();
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "Hangzhou Canchem Chemical Co., Ltd - Pharmaceutical and chemical intermediates supplier", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "Chinese", "Japanese"] }, "address": { "@type": "PostalAddress", "streetAddress": "Room 608, Building 2, No. 88 Xianxing Road, Shangcheng District", "addressLocality": "Hangzhou", "addressRegion": "Zhejiang", "postalCode": "310000", "addressCountry": "CN" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "FAQPage", "@id": "https://www.can-chem.com/our-business/#faq", "mainEntity": [ { "@type": "Question", "name": "CanChemはどのような製品を供給していますか?", "acceptedAnswer": { "@type": "Answer", "text": "CanChemは医薬品中間体、API、世界中の製薬会社やバイオテクノロジー企業に栄養成分、ファインケミカル、CDMOサービスを提供しています。 } }, { "@type": "質問", "name": "CanChemはどこにありますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemは中国の杭州に本社を置き、米国と日本にオフィスがあります。" } }, { "@type": "質問", "name": "CanChemはカスタム合成を提供していますか?", "acceptedAnswer": { "@type": "回答", "text": "はい、CanChemはラボスケールから商業生産まで、カスタム合成とCDMOサービスを提供しています。" } }, { "@type": "質問", "name": "CanChemはどのような品質基準に従っていますか?", "acceptedAnswer": { "@type": "回答", "text": "CanChemはISO 9001、ISO 14001、およびISO 45001の認証を受けた施設を運営しており、製品はUSP、EP、およびAJI規格を満たしています。" } } ] } ] }