{"product_id":"e-oasis45ol","title":"バランスボール 45cm 小学生向け バランス感覚向上 発達支援 姿勢矯正 (リングとポンプ付)","description":"\u003cp\u003e\u003clink type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/online-shop.s-re.jp\/cdn\/shop\/t\/17\/assets\/rep_file_btn_2f874ad8.css\"\u003e \u003cscript type=\"module\" id=\"rendered-js\"\u003e\nconst defaultOptions = {\n    buttonSelector: undefined,\n    panelSelector: undefined,\n    duration: 300,\n    easing: \"ease-in-out\",\n    printAll: false\n};\nconst initializeAccordion = (element, options = defaultOptions) =\u003e {\n    if (!element)\n        return;\n    const mergedOptions = Object.assign(Object.assign({}, defaultOptions), options);\n    const button = element.querySelector(`${mergedOptions.buttonSelector}`);\n    const panel = element.querySelector(`${mergedOptions.panelSelector}`);\n    if (!button || !panel) {\n        console.error(\"initializeAccordion: button or panel is not found.\");\n        return;\n    }\n    const panelId = panel.getAttribute(\"id\");\n    if (!panelId) {\n        console.error(\"initializeAccordion: panel id is required.\");\n        return;\n    }\n    setAttribute(button, panel, panelId);\n    button.addEventListener(\"click\", (event) =\u003e handleClick(event, element, button, panel, mergedOptions), false);\n    button.addEventListener(\"keydown\", (event) =\u003e handleKeyDown(event, element, button, panel, mergedOptions), false);\n    panel.addEventListener(\"beforematch\", () =\u003e handleBeforeMatch(element, button, panel, mergedOptions), true);\n    if (mergedOptions.printAll) {\n        window.addEventListener(\"beforeprint\", () =\u003e handleBeforePrint(element, button, panel));\n        window.addEventListener(\"afterprint\", () =\u003e handleAfterPrint(element, button, panel));\n    }\n};\nconst setAttribute = (button, panel, panelId) =\u003e {\n    button.setAttribute(\"role\", \"button\");\n    button.setAttribute(\"aria-expanded\", String(!panel.hasAttribute(\"hidden\")));\n    button.setAttribute(\"aria-controls\", panelId);\n};\nconst isOpened = (button) =\u003e {\n    return button.getAttribute(\"aria-expanded\") === \"true\";\n};\nlet isAnimating = false;\nconst toggleAccordion = (button, panel, options, show) =\u003e {\n    if (isOpened(button) === show)\n        return;\n    isAnimating = true;\n    if (show)\n        panel.removeAttribute(\"hidden\");\n    button.setAttribute(\"aria-expanded\", String(show));\n    panel.style.willChange = \"max-block-size\";\n    panel.style.overflow = \"clip\";\n    const { blockSize } = window.getComputedStyle(panel);\n    const keyframes = show\n        ? [{ maxBlockSize: \"0\" }, { maxBlockSize: blockSize }]\n        : [{ maxBlockSize: blockSize }, { maxBlockSize: \"0\" }];\n    const isPrefersReduced = window.matchMedia(\"(prefers-reduced-motion: reduce)\")\n        .matches;\n    const animationOptions = {\n        duration: isPrefersReduced ? 0 : Math.max(0, options.duration || 0),\n        easing: options.easing\n    };\n    const onAnimationEnd = () =\u003e {\n        requestAnimationFrame(() =\u003e {\n            panel.style.willChange = \"\";\n            panel.style.overflow = \"\";\n            if (!show)\n                panel.setAttribute(\"hidden\", \"until-found\");\n            isAnimating = false;\n        });\n    };\n    requestAnimationFrame(() =\u003e {\n        const animation = panel.animate(keyframes, animationOptions);\n        animation.addEventListener(\"finish\", onAnimationEnd);\n    });\n};\nconst hideOtherAccordion = (element, options, animation = true) =\u003e {\n    const accordionName = element.getAttribute(\"data-name\");\n    if (!accordionName)\n        return;\n    const allAccordions = [\n        ...document.querySelectorAll(`[data-name=\"${accordionName}\"]`)\n    ];\n    const otherAccordions = allAccordions.filter((otherAccordion) =\u003e otherAccordion !== element \u0026\u0026\n        isOpened(otherAccordion.querySelector(`${options.buttonSelector}`)));\n    otherAccordions.forEach((otherAccordion) =\u003e {\n        const otherButton = otherAccordion.querySelector(`${options.buttonSelector}`);\n        const otherPanel = otherAccordion.querySelector(`${options.panelSelector}`);\n        if (!(otherButton || otherPanel))\n            return;\n        if (animation) {\n\n            toggleAccordion(otherButton, otherPanel, options, false);\n        }\n        else {\n\n\n            otherButton.setAttribute(\"aria-expanded\", \"false\");\n            otherPanel.setAttribute(\"hidden\", \"until-found\");\n        }\n    });\n};\nconst handleClick = (event, element, button, panel, options) =\u003e {\n    event.preventDefault();\n    if (isAnimating)\n        return;\n    toggleAccordion(button, panel, options, !isOpened(button));\n    if (isOpened(button))\n        hideOtherAccordion(element, options);\n};\nconst handleKeyDown = (event, element, button, panel, options) =\u003e {\n    if (event.key === \" \") {\n        handleClick(event, element, button, panel, options);\n    }\n};\nconst handleBeforeMatch = (element, button, panel, options) =\u003e {\n    button.setAttribute(\"aria-expanded\", \"true\");\n    hideOtherAccordion(element, options, false);\n};\nconst openStatusAttribute = \"data-open-status\";\nconst handleBeforePrint = (element, button, panel) =\u003e {\n    if (!element)\n        return;\n    const isStatusOpen = button.getAttribute(\"aria-expanded\") === \"true\";\n    element.setAttribute(openStatusAttribute, String(isStatusOpen));\n    button.setAttribute(\"aria-expanded\", \"true\");\n    panel.removeAttribute(\"hidden\");\n};\nconst handleAfterPrint = (element, button, panel) =\u003e {\n    if (!element)\n        return;\n    const isStatusOpen = element.getAttribute(openStatusAttribute) === \"true\";\n    button.setAttribute(\"aria-expanded\", String(isStatusOpen));\n    if (!isStatusOpen)\n        panel.setAttribute(\"hidden\", \"until-found\");\n    element.removeAttribute(openStatusAttribute);\n};\ndocument.addEventListener(\"DOMContentLoaded\", () =\u003e {\n    \/\/ アコーディオンの要素を取得し、initializeAccordion関数を呼び出す\n    const accordions = document.querySelectorAll(\".accordion\");\n    if (accordions.length === 0)\n        return;\n    accordions.forEach((accordion) =\u003e {\n        initializeAccordion(accordion, {\n            buttonSelector: \".button\",\n            panelSelector: \".panel\",\n            duration: 300,\n            printAll: true\n        });\n    });\n});\nexport {};\n\/\/# sourceURL=pen.js\n    \u003c\/script\u003e\u003c\/p\u003e\n\u003cstyle type=\"text\/css\"\u003e.lineup td img { display:block; margin:0px auto 8px;}\np {display:block; margin:0px; text-align:left;}\n.lineup td img { display:block; margin:0px auto 8px;}\n.tt01 { font-size:20px; color:#1a909f; line-height:150%; font-weight:bold;}\n.p01 { font-size:14px; color:#333; line-height:150%;}\n.tt02 { font-size:20px; color:#f20445; line-height:150%; font-weight:bold;}\n.pink { color:#f20445;}\n.pad15 { padding:15px;}\n#wa { font-size:14px; border: 6px solid #c497ff; width:672px; padding:10px; text-align:left;}\n\t\n#detail .m-item-introduction .unit .inner.sec{}\n\ndl{\n  margin-bottom: 40px;\n}\n\/*dl dt{\n  background: #e6ebef;\n}\n dl dt h3{\n  font-size: 24px;\n  font-weight: bold;\n  color: #004098;\n  padding: 8px 16px;\n} *\/\ndl dd.base{\n  padding: 40px 30px;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-pack: justify;\n  -ms-flex-pack: justify;\n  justify-content: space-between;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n}\ndl dd + dd{\n  border-top: solid 1px #ced7e0;\n}\ndl dd.base .txt-holder,\ndl dd.base .img-holder{\n  width: 456px;\n}\n\ndl dd.base .img-holder img{\n  width: 100%;\n}\ndl dd.base .youtube-holder{\n  width: 100%;\n  margin-top: 40px;\n  text-align: center;\n}\ndl dd.base .youtube-holder h5{\n  text-align: center;\n  margin-bottom: 10px;\n  font-size: 16px;\n}\n\ndl dd.base02{\n  padding: 40px 30px;\n}\n\ndl dd.base02 ul{\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-pack: justify;\n  -ms-flex-pack: justify;\n  justify-content: space-between;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n}\ndl dd.base02 ul li{\n  margin-bottom: 15px;\n}\n\ndl dd.base02 ul li .img-holder{\n  margin-bottom: 20px;\n}\n\ndl dd.base02 ul li p{\n  text-align: center;\n  font-size: 16px;\n  color: #333;\n  margin-top: 10px;\n}\n\ndl dd.base02 ul.unit-02 li{\n  width: 50%;\n}\n\ndl dd.base02 ul.unit-02 li a{\n  display: block;\n}\ndl dd.base02 ul.unit-02 li a img{\n  width: 96%;\n}\n\ndl dd.base02 .txt-holder{\n  margin-bottom: 40px;\n}\n\ndl dd .txt-holder p{\n  font-size: 16px;\n  color: #333;\n}\n\ndl dd .txt-holder p + p{\n  margin-top: 20px;\n}\n\u003c\/style\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cdiv class=\"product_detail_wrap\"\u003e\n\u003cimg alt=\"バランスボール サイズ45cm 耐荷重300kg【税込・送料無料】\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis45ol__oasis45ol-new01h.jpg?v=1776764200\" width=\"100%\"\u003e\n\u003cp class=\"tt01\"\u003eキッズも使える45cm!\u003cbr\u003eフィットネスクラブがつくったバランスボール！\u003c\/p\u003e\n\u003cbr\u003e\u003cimg alt=\"30日間返品保証\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis55ol__bb_hosho_pc.png?v=1776764193\" width=\"100%\"\u003e\u003cbr\u003e\u003cbr\u003e\u003cimg alt=\"バランスボール サイズ45cm 耐荷重300kg【税込・送料無料】\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis45ol__oasis45ol-02a.jpg?v=1776764201\" width=\"100%\"\u003e\u003cbr\u003e\n\u003cp class=\"p01 pad15\"\u003e椅子をバランスボールに代えることで、日常の中でお子様のバランス感覚や体幹を鍛えて美しい姿勢を身につけることが期待できます。お好みで選べる５色のカラーバリエーション。\u003cbr\u003eルネサンスのバランスボールは厚手で丈夫です。\u003c\/p\u003e\n\u003cimg alt=\"ルネサンスロゴ\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis45ol__oasis45ol-color-r2.jpg?v=1776764202\" width=\"100%\"\u003e\n\u003cp class=\"p01 pad15\"\u003e※リングのサイズにつきましては45cm・55cm・65cm・75cmのバランスボール全て共通のサイズとなっております。 ボールのサイズによってはリングとボールに多少の隙間（45cmのバランスボールで3-4cm）が発生致します。\u003cbr\u003eリングの役割と致しましては、ボールが転がらないようにするものですので、座っていただくとボールとリングの隙間は無くなりボールが安定致します。\u003c\/p\u003e\n\u003cbr\u003e\u003cbr\u003e\u003cimg alt=\"ルネサンスのバランスボールの特長\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis45ol__oasis45ol-new04bms2.jpg?v=1776764201\" width=\"100%\"\u003e\n\u003cp class=\"p01 pad15\"\u003eダイエットやエクササイズはモチベーションを意識することが最大の難関ではないでしょうか。\u003cbr\u003eしかし座るだけでも体勢を支える為に体幹を自然に使うバランスボールなら\u003cspan class=\"tt02\"\u003e『椅子をバランスボールに代える』\u003c\/span\u003eたったこれだけで意識せず無理せず体幹を鍛えるエクササイズになります。\u003c\/p\u003e\n\u003cdl\u003e\n\u003cdt\u003e\n\u003ch3\u003e安全に配慮\u003c\/h3\u003e\n\u003c\/dt\u003e\n\u003cdd\u003e\n\u003cdiv class=\"txt-holder\"\u003e\n\u003ch4\u003eバーストしにくいタイプ\u003c\/h4\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"clear: left;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv style=\"display: none;\"\u003e\n\u003cdiv style=\"width: 100%;\"\u003e\n\u003ch5 style=\"text-align: center;\"\u003e荷重試験の様子\u003c\/h5\u003e\n\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__etc__balltest.jpg?v=1776764194\" width=\"100%\"\u003e\n\u003c\/div\u003e\n\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"width: 100%;\"\u003e\n\u003ch5 style=\"text-align: center;\"\u003e品質試験報告書\u003c\/h5\u003e\n\u003ccenter\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__etc__35023001852.jpg?v=1776764194\" style=\"border: solid 1px; border-color: #cecece;\" width=\"80%\"\u003e\u003c\/center\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"clear: left;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"txt-holder\"\u003e\n\u003cp class=\"notes\"\u003e\u003cbr\u003e※一般財団法人ボーケン品質評価機構調べ\u003cbr\u003e（試験番号 35023001852）\u003cbr\u003e※2025年4月1日より社名がルネサンスに変わりました。\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/dd\u003e\n\u003c\/dl\u003e\n\u003c!-- Q\u0026A --\u003e\n\u003cdiv style=\"max-width: 720px;\"\u003e\n\u003cimg alt=\"よくあるご質問\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__support__qa-title.png?v=1776764193\" style=\"margin: 0 auto 0; display: block;\" width=\"194\"\u003e\n\u003csection aria-labelledby=\"titleA\" style=\"margin-top: 1%;\"\u003e\n\u003ch2 id=\"titleA\"\u003e使い方について\u003c\/h2\u003e\n\u003csection aria-labelledby=\"tab1\" class=\"accordion\" data-name=\"groupA\"\u003e\n\u003ch3 class=\"q-title\"\u003e\u003ca class=\"button\" href=\"#panel1\" id=\"tab1\"\u003eQ 効果的な使い方を知りたい\u003c\/a\u003e\u003c\/h3\u003e\n\u003cdiv class=\"panel\" id=\"panel1\"\u003e\n\u003cp class=\"ans\"\u003eA　効果的な使い方や目的別エクササイズ、インストラクターと一緒に運動できるレッスン動画など、わかりやすい動画をご用意しています。正しいフォームや使い方のポイントを知ることで、より安全に・効果的に運動を続けられます。ぜひこちらからご覧ください。\u003cbr\u003e\u003ca class=\"galink\" href=\"https:\/\/online-shop.s-re.jp\/blogs\/magazine\/mov-ball\"\u003e使い方動画（バランスボール）\u003c\/a\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection aria-labelledby=\"tab2\" class=\"accordion\" data-name=\"groupA\"\u003e\n\u003ch3 class=\"q-title\"\u003e\u003ca class=\"button\" href=\"#panel2\" id=\"tab2\"\u003eQ 空気はどれくらい入れたらいいの？\u003c\/a\u003e\u003c\/h3\u003e\n\u003cdiv class=\"panel\" hidden=\"until-found\" id=\"panel2\"\u003e\n\u003cp class=\"ans\"\u003eA　座ったときにボールが軽く沈みこみ、膝の角度が90度くらいになる高さが目安です。 直径までパンパンに空気を入れると、ゴムが張って沈み込みが少なく反発力が高くなります。また少なめに入れると、沈み込みが深くなり安定感は増しますが弾む力が弱くなります。「はずむ」エクササイズを行うときはやや反発力は高めの方がやりやすく、「椅子代わり」にお使いになる時は、空気を少なめに入れて安定させた方が安全にご使用いただけます。机の高さによっては低く感じる場合もございますので、その場合は空気を多めに入れて調整してください。パンパンに膨らまして使用すると、大変転がりやすくなり、転倒して怪我されることもございますのでご注意いただき、固定用リングも併用してお使いいただくことをおすすめします。\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection aria-labelledby=\"tab3\" class=\"accordion\" data-name=\"groupA\"\u003e\n\u003ch3 class=\"q-title\"\u003e\u003ca class=\"button\" href=\"#panel3\" id=\"tab3\"\u003eQ 子供は使えますか？\u003c\/a\u003e\u003c\/h3\u003e\n\u003cdiv class=\"panel\" hidden=\"until-found\" id=\"panel3\"\u003e\n\u003cp class=\"ans\"\u003eA　はい、お子さまにも大変おすすめです。バランスボールは、座っているだけで体幹の筋肉を自然に使うことができるため、特別なトレーニングが苦手なお子様でも無理なく楽しく続けられるのが特徴です。「体幹を鍛える」「バランス感覚の向上」といった運動メリットはもちろん、椅子として活用することで良い姿勢を意識しやすくなり集中力が向上するなど、日常生活でも多くのメリットを得ることができます。特にスポーツをしているお子様にとっては、ケガの予防やパフォーマンス向上にも役立つため、ぜひご活用ください。小学生および体の小さなお子さまには、身長150cm未満に適した【\u003ca class=\"galink\" href=\"https:\/\/online-shop.s-re.jp\/products\/e-oasis45ol\"\u003eバランスボール45cm\u003c\/a\u003e】や更にコンパクトな【\u003ca class=\"galink\" href=\"https:\/\/online-shop.s-re.jp\/products\/e-taikanyoga-kids\"\u003e子供用バランスボール30cm\u003c\/a\u003e】がおすすめです。 使用する場合は指導者や保護者のもとで正しくお使いいただき、ボールの上に立つなど危険な使い方や、転倒による怪我に十分ご注意ください。\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection aria-labelledby=\"tab4\" class=\"accordion\" data-name=\"groupA\"\u003e\n\u003ch3 class=\"q-title\"\u003e\u003ca class=\"button\" href=\"#panel4\" id=\"tab4\"\u003eQ 家族で兼用できますか？\u003c\/a\u003e\u003c\/h3\u003e\n\u003cdiv class=\"panel\" hidden=\"until-found\" id=\"panel4\"\u003e\n\u003cp class=\"ans\"\u003eA　はい、ご家族でお使いいただけます。Reのバランスボールは、転がりを防ぐ固定リングがついていますので、お子様から年配の方まで幅広い世代の方により安全にお使いいただけるのが魅力です。また、バランスボールの空気の量を調節することで安定感や反発力を調節できますので、自宅に1つあれば、家族みんなでエクササイズやストレッチ、イス代わりとしても利用できて便利です。ボールのサイズには適正身長がありますので、より効果的にかつ快適にお使いいただくには、ご自身にあったサイズをお選びいただくことをおすすめします。\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection aria-labelledby=\"tab5\" class=\"accordion\" data-name=\"groupA\"\u003e\n\u003ch3 class=\"q-title\"\u003e\u003ca class=\"button\" href=\"#panel5\" id=\"tab5\"\u003eQ リハビリに使ってもいいですか？\u003c\/a\u003e\u003c\/h3\u003e\n\u003cdiv class=\"panel\" hidden=\"until-found\" id=\"panel5\"\u003e\n\u003cp class=\"ans\"\u003eA　バランスボールは元々、リハビリ用グッズとして開発された背景から病院や施設で活用されており、姿勢改善や筋力向上に役立つ大変すぐれた運動器具です。弊社フィットネスクラブやリハビリ施設等でも幅広く活用されておりますが、エクササイズの仕方やお身体の状態によっては過度な負担とる場合もございます。個人でご利用になる場合は、必ずかかりつけのお医者様にご相談いただき、専門家の指導のもとで適切にお使いいただけますようお願いします。\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c\/section\u003e\n\u003cbr\u003e\n\u003cdiv id=\"more\"\u003e\u003ca href=\"https:\/\/online-shop.s-re.jp\/blogs\/qa\/balanceball\" target=\"_blank\"\u003eもっと見る\u003c\/a\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Q\u0026A ここまで--\u003e \u003cbr\u003e\u003cbr\u003e\n\u003cdiv id=\"box_out\"\u003e\n\u003cimg alt=\"カスタマーサポート\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__support__cussup-title.png?v=1776764193\" style=\"margin: 0 auto 0; display: block;\" width=\"300\"\u003e\n\u003cdiv class=\"flex center box_btn_manual\"\u003e\n\u003ca class=\"btn-more black\" href=\"https:\/\/online-shop.s-re.jp\/blogs\/qa\/balanceball\"\u003eよくあるご質問\u003c\/a\u003e\n\u003cdiv class=\"box_btn_setsumeisyo\"\u003e取扱説明書\u003c\/div\u003e\n\u003ca class=\"btn-more black\" href=\"https:\/\/online-shop.s-re.jp\/pages\/inquiry\"\u003e製品に関するお問い合わせ\u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cbr\u003e\u003cbr\u003e\n\u003cdl class=\"lineup_list\"\u003e\n\u003cdt\u003e\n\u003ch3\u003eバランスボールラインナップ\u003c\/h3\u003e\n\u003c\/dt\u003e\n\u003cdd class=\"base02\"\u003e\n\u003cdiv class=\"txt-holder\"\u003e\n\u003cp\u003e全て 耐荷重300kg／固定リング+ハンドポンプがセット\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cul class=\"unit-02\"\u003e\n\u003cli\u003e\u003ca href=\"https:\/\/online-shop.s-re.jp\/products\/e-oasis45ol\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis55ol__img_lineup_45.jpg?v=1776764194\"\u003e \u003c\/a\u003e\u003c\/li\u003e\n\u003cli\u003e\u003ca href=\"https:\/\/online-shop.s-re.jp\/products\/e-oasis55ol\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis55ol__img_lineup_55.jpg?v=1776764194\"\u003e \u003c\/a\u003e\u003c\/li\u003e\n\u003cli\u003e\u003ca href=\"https:\/\/online-shop.s-re.jp\/products\/e-oasis65ol\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis55ol__img_lineup_65.jpg?v=1776995259\"\u003e \u003c\/a\u003e\u003c\/li\u003e\n\u003cli\u003e\u003ca href=\"https:\/\/online-shop.s-re.jp\/products\/e-oasis75ol\"\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/sportsoasis__images__products__e-oasis55ol__img_lineup_75.jpg?v=1776764193\"\u003e \u003c\/a\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/dd\u003e\n\u003c\/dl\u003e\n\u003ctable style=\"width: 780px; background-color: #ffffff;\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003cth style=\"font-size: 14px; text-align: left; line-height: 2; border-bottom-style: solid; border-width: 1px; border-color: #000000;\"\u003e商品仕様\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 サイズ 】 　［ボール］最大直径45cm　［リング］（内）34cm（外）50cm\u003cbr\u003e\u003cspan style=\"color: #ff0000;\"\u003e※素材の性質上、一度に最大限の直径（45cm）には膨らみません。最大直径でお使いになりたい時には、ゆっくりと時間をかけて（１時間おきに５回くらい）空気を入れてください。\u003cbr\u003e※リングのサイズにつきましては45cm・55cm・65cm・75cmのバランスボール全て共通のサイズとなっております。\u003cbr\u003eボールのサイズによってはリングとボールに多少の隙間（45cmのバランスボールで3-4cm）が発生致します。\u003cbr\u003eリングの役割と致しましては、ボールが転がらないようにするものですので、座っていただくとボールとリングの隙間は無くなりボールが安定致します。\u003c\/span\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 材　質 】 　［ボール］塩化ビニール(PVC)　［リング］塩化ビニール(PVC)　［ハンドポンプ］PP\u003cbr\u003e\u003cspan style=\"color: #666666;\"\u003e※素材（ゴム）の性質上、少しベトベトとした感覚があります\u003c\/span\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 重　量 】 ［ボール］680ｇ　［リング］800ｇ\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 耐荷重 】　300ｋｇ\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 \u003cspan style=\"font-size: small;\"\u003eカラー\u003c\/span\u003e 】　ベビーピンク、ライトブルー、パールホワイト、アイスブルー、モスグリーン\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 適応身長 】　150cm以下　\u003cbr\u003e\u003cspan style=\"color: #666666;\"\u003e※身長はあくまで目安です\u003cbr\u003e※ボールに座った時に膝が90度に曲がるサイズが理想です\u003c\/span\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 付属品 】　バランスボール、ボール固定用リング、ハンドポンプ、栓抜き、栓（ボール用×2、リング用×2）、取扱説明書\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 備考欄 】 \u003cbr\u003e　 ※色の薄いバランスボールによっては、光の加減でボールの中にスジ状の色ムラが見える場合がありますが良品です。\u003cbr\u003e　 また、折りたたんだ状態で箱に入れておりますので、折りジワがある場合がございます。\u003cbr\u003e　 最大直径まで膨らませていただければ徐々に無くなってまいります。\u003cbr\u003e　 いずれの場合も耐荷重・耐久性及び使用上は問題ありませんので安心してお使いください。\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: dashed; border-width: 1px; border-color: #cccccc; padding: 10px 0px;\"\u003e【 原産国 】　台湾\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"font-size: 12px; text-align: left; border-bottom-style: solid; border-width: 1px; border-color: #000000; padding: 10px 0px;\"\u003e【 販売元 】（株）ルネサンス\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003ctable style=\"font-size: 10px; color: #666; text-align: left; line-height: 1.5; width: 100%; margin: 10px 0px; background-color: #ffffff;\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003e※コンピュータディスプレイの性質上、実際の色と異なって見える場合がございます。あらかじめご了承いただけますようお願いいたします。\u003cbr\u003e※商品のデザイン・色柄・仕様等は品質向上のため予告なく変更することがありますのでご了承ください。\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e","brand":"株式会社ルネサンス運営 公式オンラインショップ","offers":[{"title":"モスグリーン","offer_id":51784739061892,"sku":"Xa21-001-10000","price":4080.0,"currency_code":"JPY","in_stock":true},{"title":"ベビーピンク","offer_id":51784739094660,"sku":"Xb21-001-10000","price":4080.0,"currency_code":"JPY","in_stock":true},{"title":"アイスブルー","offer_id":51784739127428,"sku":"Xc21-001-10000","price":4080.0,"currency_code":"JPY","in_stock":true},{"title":"ライトブルー","offer_id":51784739160196,"sku":"Xd21-001-10000","price":4080.0,"currency_code":"JPY","in_stock":true},{"title":"パールホワイト","offer_id":51784739192964,"sku":"Xe21-001-10000","price":4080.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0389\/7691\/3540\/files\/1_000000000836.jpg?v=1776858271","url":"https:\/\/online-shop.s-re.jp\/products\/e-oasis45ol","provider":"株式会社ルネサンス 公式オンラインショップ Forメンバーズ","version":"1.0","type":"link"}