{"title":"ご購入者様限定クーポン","description":"\u003cbody\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eクーポンページ\u003c\/title\u003e\n    \u003cstyle\u003e\n        #coupon-section * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        #coupon-section {\n            font-family: \"游ゴシック体\", YuGothic, \"游ゴシック\", \"Yu Gothic\", sans-serif;\n            background-color: #EEECDD;\n            color: #000;\n        }\n\n        #coupon-section .container {\n            max-width: 100%;\n            margin: 0 auto;\n        }\n\n        #coupon-section .kv-image {\n            width: 100%;\n            height: auto;\n            margin-top: 16px;\n            display: block;\n            background-color: #A2C2DD;\n            aspect-ratio: 16 \/ 9;\n        }\n\n        #coupon-section .content {\n            padding: 32px 20px;\n            text-align: center;\n        }\n\n        #coupon-section .coupon-code {\n            background-color: #A2C2DD;\n            color: #333;\n            padding: 20px 24px;\n            border-radius: 12px;\n            margin-bottom: 24px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);\n        }\n\n        #coupon-section .coupon-code .title {\n            font-size: 16px;\n            font-weight: normal;\n            margin-bottom: 12px;\n            line-height: 1.5;\n        }\n\n        #coupon-section .coupon-code h2 {\n            font-size: 14px;\n            font-weight: normal;\n            margin-bottom: 12px;\n            letter-spacing: 0.05em;\n        }\n\n        #coupon-section .coupon-code .code {\n            font-size: 22px;\n            font-weight: bold;\n            letter-spacing: 0.1em;\n            padding: 12px;\n            background-color: rgba(238, 236, 221, 0.2);\n            border-radius: 8px;\n            display: inline-block;\n            margin-bottom: 16px;\n        }\n\n        #coupon-section .copy-button {\n            background-color: #9C2335;\n            color: #EEECDD;\n            border: none;\n            padding: 14px 32px;\n            border-radius: 8px;\n            font-size: 16px;\n            font-weight: bold;\n            cursor: pointer;\n            margin-top: 16px;\n            transition: opacity 0.3s ease;\n            width: 100%;\n            max-width: 280px;\n        }\n\n        #coupon-section .copy-button:active {\n            opacity: 0.7;\n        }\n\n        #coupon-section .copy-button.copied {\n            background-color: #EEECDD;\n            color: #000;\n        }\n\n        #coupon-section .notice {\n            font-size: 12px;\n            color: #000;\n            line-height: 1.7;\n            padding: 0 8px;\n        }\n\n        @media (min-width: 768px) {\n            #coupon-section .container {\n                max-width: 480px;\n            }\n        }\n    \u003c\/style\u003e\n\n\n    \u003cdiv id=\"coupon-section\"\u003e\n         \u003cdiv class=\"container\"\u003e\n            \u003c!-- KV画像 --\u003e\n            \u003c!-- \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/CRM_travel_KV.jpg\" alt=\"旅先でのおすすめアイテム\" class=\"kv-image\"\u003e --\u003e\n            \n            \u003c!-- コンテンツエリア --\u003e\n            \u003cdiv class=\"content\"\u003e\n                \u003c!-- クーポンコード --\u003e\n                \u003cdiv class=\"coupon-code\"\u003e\n                    \u003cdiv class=\"title\"\u003e\n\u003cb\u003e★ページ内の商品が対象★\u003c\/b\u003e\u003cbr\u003e\n\u003cb\u003e旅先や移動中に、持っておくと安心。\u003csmall\u003e\u003cbr\u003e\u003cbr\u003e\u003c\/small\u003e\n持ち運べるお手軽リカバリーアイテム\u003cbr\u003eに使える15%OFFクーポン\u003cbr\u003e\u003c\/b\u003e\n\u003c\/div\u003e\n                    \u003ch2\u003eクーポンコード\u003c\/h2\u003e\n                    \u003cdiv class=\"code\"\u003eTXPG25TRAV\u003c\/div\u003e\n                    \u003cbutton class=\"copy-button\" onclick=\"copyCouponCode()\"\u003eコードをコピー\u003c\/button\u003e\n                \u003c\/div\u003e\n                \u003c!-- 注意書き --\u003e\n                \u003cp class=\"notice\"\u003e\n                    ※クーポンの利用はご購入いただいたアカウントでのログインが必須となります。未ログイン状態ではクーポンは利用いただけませんのでご了承ください。\u003cbr\u003e※他キャンペーン・クーポンとの併用不可\u003cbr\u003e\u003cbr\u003e\u003cb\u003e\u003cbig\u003e有効期限:注文日から30日間\u003c\/big\u003e\u003c\/b\u003e\n                \u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cscript\u003e\n        function copyCouponCode() {\n            const code = 'TXPG25TRAV';\n            const button = document.querySelector('#coupon-section .copy-button');\n            \n            navigator.clipboard.writeText(code).then(() =\u003e {\n                button.textContent = 'コピーしました!';\n                button.classList.add('copied');\n                \n                setTimeout(() =\u003e {\n                    button.textContent = 'コードをコピー';\n                    button.classList.remove('copied');\n                }, 2000);\n            }).catch(err =\u003e {\n                alert('コピーに失敗しました');\n            });\n        }\n    \u003c\/script\u003e\n\n\u003c\/body\u003e","products":[{"product_id":"haramaki","title":"ブレインスリープ ハラマキ リカバリー","description":"\u003clink rel=\"stylesheet\" href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_all_v2_d256bfde-d136-471e-8368-f728a7e79049.css?v=1754290408\"\u003e\n\u003cstyle\u003e\n    .rwlp__header__wrapper {\n        background: #a0c0db;\n        height: auto;\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 9;\n    }\n\n    @media screen and (min-width: 750px) {\n        .rwlp__header__wrapper {\n            padding: 0 30px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__wrapper {\n            padding: 0 20px;\n        }\n    }\n\n    .rwlp__header {\n        display: flex;\n        align-items: center;\n        justify-content: space-between;\n    }\n\n    @media screen and (min-width: 1200px) {\n        .rwlp__header {\n            height: 90px;\n        }\n    }\n\n    @media screen and (max-width: 1199px) {\n        .rwlp__header {\n            height: 65px;\n        }\n    }\n\n    @media screen and (min-width: 750px) {\n        .rwlp__header__logo {\n            width: 85px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__logo {\n            width: 70px;\n        }\n    }\n\n    @media screen and (min-width: 750px) {\n        .rwlp__header__menu__wrapper {\n            margin: 0 30px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__menu__wrapper {\n            \/* margin: 0 20px; *\/\n        }\n    }\n\n    .rwlp__header__menu__item {\n        display: inline-block;\n    }\n\n    @media screen and (min-width: 1200px) {\n        .rwlp__header__menu__item+.rwlp__header__menu__item {\n            margin-left: 35px;\n        }\n    }\n\n    @media screen and (min-width: 750px) and (max-width: 1199px) {\n        .rwlp__header__menu__item+.rwlp__header__menu__item {\n            margin-left: 30px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__menu__item+.rwlp__header__menu__item {\n            margin-left: 15px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__menu__item.rwlp__hidden__sm {\n            display: none;\n        }\n    }\n\n    @media screen and (min-width: 1200px) {\n        .rwlp__header__menu__link {\n            font-size: 14px;\n        }\n    }\n\n    @media screen and (max-width: 1199px) {\n        .rwlp__header__menu__link {\n            font-size: 14px;\n        }\n    }\n\n    .rwlp__header__wrapper.fixed {\n        position: fixed;\n        top: -90px;\n        transition: unset;\n    }\n\n    .rwlp__header__wrapper.animate {\n        transition: top 0.15s ease-out;\n        top: 0;\n    }\n\n    .rwlp__header__wrapper.hide {\n        top: -90px;\n    }\n\n    .kv {\n        \/*border-top: 55px solid #fff;*\/\n    }\n\n    .rwlp__wrapper,\n    #MainContent,\n    html.js {\n        overflow: unset;\n    }\n\n    @media screen and (max-width:749px) {\n\n        .rwlp__wrapper,\n        #MainContent,\n        html.js {\n            overflow: unset !important;\n        }\n    }\n\n    .rwlp__wrapper div:empty {\n        display: initial;\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    .rte.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {\n        transform: unset;\n        animation: unset;\n        opacity: 1;\n    }\n\n    .rwlp__wrapper a:empty,\n    .rwlp__wrapper div:empty {\n        display: initial;\n    }\n\n    .rwlp__wrapper video {\n        height: auto;\n        width: 100%;\n    }\n\n    .rwlp__wrapper a {\n        text-decoration: unset;\n        color: #000;\n    }\n\n    .rwlp__wrapper ul {\n        list-style: none;\n    }\n\n    .technology__link__lists {\n        padding: 0;\n    }\n\n    .rwlp__wrapper img {\n        width: 100%;\n        height: auto;\n        max-width: 100%;\n        border: unset;\n        margin-bottom: 0;\n    }\n\n    .faq__item img {\n        width: auto;\n        max-width: 100%;\n    }\n\n    .animated {\n        -webkit-animation-duration: 1s;\n        animation-duration: 1s;\n        -webkit-animation-fill-mode: both;\n        animation-fill-mode: both\n    }\n\n    .fadeInUpShort {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px)\n    }\n\n    \/* margin padding 調整*\/\n    .sleep__info__quality__golden__title {\n        margin: 0\n    }\n\n    #cover.spec__item .spec__item__desc__text__content__title {\n        margin-top: 0;\n    }\n\n    .kv img,\n    .intro05__img img,\n    .last img,\n    .spec__slider__thumb img,\n    .spec__quality__img img,\n    .intro02__thermo img,\n    .technology__item__desc__img img,\n    .line__bnr img,\n    .technology__link__lists__title {\n        margin-bottom: 0;\n    }\n\n    .rwlp__wrapper ul,\n    .technology__link__lists {\n        padding: 0 !important\n    }\n\n    .termina {\n        font-family: Termina, \"游ゴシック体\", YuGothic, \"Yu Gothic M\", \"游ゴシック Medium\", \"Yu Gothic Medium\", \"Yu Gothic Pr6N M\", sans-serif !important;\n        font-weight: 400\n    }\n\n    body,\n    details,\n    div,\n    fieldset,\n    form,\n    h1,\n    h2,\n    header,\n    html,\n    iframe,\n    img,\n    label,\n    legend,\n    li,\n    nav,\n    p,\n    section,\n    small,\n    span,\n    summary,\n    ul {\n        margin: 0;\n        padding: 0;\n        border: 0;\n        outline: 0;\n        vertical-align: baseline;\n        background: 0 0\n    }\n\n    button,\n    input,\n    select {\n        appearance: none\n    }\n\n    .fadeInUpShort {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px)\n    }\n\n    body {\n        overflow-x: hidden\n    }\n\n    h1,\n    h2 {\n        font-weight: 400 !important\n    }\n\n    .technology__item__desc__img {\n        position: relative;\n        width: 58.1428571428571vw;\n        flex: 1\n    }\n\n    .technology__item__desc__img img {\n        width: 100%;\n        height: auto\n    }\n\n    @media screen and (max-width:749px) {\n        .technology__item__desc__img {\n            margin-left: auto;\n            width: calc(100% - 20px)\n        }\n\n        .technology__item__desc__img img {\n            height: 100%\n        }\n    }\n\n    .u-sp {\n        display: none !important\n    }\n\n    @media screen and (max-width:767px) {\n        .u-sp {\n            display: block !important\n        }\n    }\n\n    img {\n        vertical-align: bottom\n    }\n\n    .intro02__img {\n        width: 435px;\n        position: absolute;\n        top: 100px;\n        left: 50.4%\n    }\n\n    .intro02__txt4 {\n        text-align: center;\n        font-size: 45px;\n        font-family: \"Yu Gothic Pr6N D\", \"游ゴシック体\", YuGothic, sans-serif\n    }\n\n    .tech02__wrap1__img {\n        width: 714px;\n        flex-shrink: 0\n    }\n\n    @media screen and (max-width:767px) {\n        .intro02__arrow {\n            width: 20px;\n            margin: 0 auto 24px\n        }\n\n        .intro02__wrap2__ttl {\n            width: 186px;\n            height: 32px;\n            display: flex !important;\n            align-items: center;\n            justify-content: center;\n            font-size: 18px;\n            margin: 0 auto 20px;\n            border: 1px solid #fff\n        }\n\n        .intro02__img {\n            position: relative;\n            left: 0;\n            top: 0;\n            max-width: 100%;\n            width: 450px;\n            padding-left: 65px;\n            margin: -16px auto -90px\n        }\n\n        .intro02__img img {\n            position: relative;\n            top: 0;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 385px;\n            max-width: unset\n        }\n\n        .intro02__txt4 {\n            font-size: 25px;\n            line-height: 1.5\n        }\n\n        .intro03__txt4 {\n            text-align: left;\n            font-size: 4.2666vw;\n            font-feature-settings: \"palt\";\n            line-height: 2;\n            color: #fff;\n            padding: 50px 20px\n        }\n\n        .tech02__wrap1__img {\n            width: 100%\n        }\n    }\n\n\n    .u-pc {\n        display: block !important\n    }\n\n    .u-sp {\n        display: none !important\n    }\n\n    @media screen and (max-width:767px) {\n        .u-pc {\n            display: none !important\n        }\n\n        .u-sp {\n            display: block !important\n        }\n    }\n\n\n    \/* giftブロック調整用 *\/\n    .gitf_block {\n        border-top: 1px #000 solid !important;\n        padding-top: 100px;\n        margin-top: 0px;\n    }\n\n    @media screen and (max-width:767px) {\n        .gitf_block {\n            padding-top: 50px;\n        }\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"rwlp__wrapper\"\u003e\n    \u003cheader style=\"display: none;\" class=\"rwlp__header__wrapper\"\u003e\n        \u003cdiv class=\"\"\u003e\n            \u003cheader class=\"rwlp__header\"\u003e\u003ca href=\"#\" class=\"rwlp__header__logo\"\u003e \u003cimg height=\"40\" width=\"85\" alt=\"ロゴ：Brain Sleep\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_adpage_logo.webp\"\u003e \u003c\/a\u003e\n                \u003cnav class=\"rwlp__header__menu__wrapper\"\u003e\n                    \u003cul class=\"rwlp__header__menu\"\u003e\n                        \u003cli class=\"rwlp__header__menu__item\"\u003e\u003ca href=\"#technology\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eテクノロジー\u003c\/a\u003e\u003c\/li\u003e\n                        \u003cli class=\"rwlp__header__menu__item\"\u003e\u003ca href=\"#spec\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003e仕様\u003c\/a\u003e\u003c\/li\u003e\n                        \u003cli class=\"rwlp__header__menu__item\"\u003e\u003ca href=\"#faq\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eFAQ\u003c\/a\u003e\u003c\/li\u003e\n                    \u003c\/ul\u003e\n                \u003c\/nav\u003e\n            \u003c\/header\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n    \u003csection class=\"kv\"\u003e\n        \u003cdiv class=\"kv__bg\"\u003e\n            \u003cimg class=\"u-pc\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_bg_model_v2.webp?2\" width=\"1998\" height=\"1190\" alt=\"\"\u003e \u003cimg class=\"u-sp\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_bg_model_sp_v2.webp?2\" width=\"748\" height=\"1078\" alt=\"\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"kv__inner\"\u003e\n            \u003ch1 class=\"kv__txt\"\u003eあらゆる冷えから守る\u003cbr\u003eリカバリーハラマキ\u003c\/h1\u003e\n            \u003cdiv class=\"kv__list\"\u003e\n                \u003cp class=\"kv__list__item\"\u003e温熱\u003c\/p\u003e\n                \u003cp class=\"kv__list__item\"\u003e睡眠着圧\u003c\/p\u003e\n                \u003cp class=\"kv__list__item\"\u003e抗菌防臭\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"kv__logo\"\u003e\n                \u003cimg class=\"u-pc\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_logo.webp\" width=\"662\" height=\"228\" alt=\"BRAINSLEEP HARAMAKI RECOVERY\"\u003e \u003cimg class=\"u-sp\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_logo_sp_v2.webp\" width=\"605\" height=\"73\" alt=\"\"\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro01 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro01__inner\"\u003e\n            \u003cp class=\"intro01__txt2 fadeInUpShort animated\"\u003eブレインスリープから\u003c\/p\u003e\n            \u003cp class=\"intro01__txt3 fadeInUpShort animated\"\u003e\u003cspan\u003eリカバリーハラマキ\u003c\/span\u003eが\u003cbr\u003e新登場！\u003c\/p\u003e\n            \u003cp class=\"intro01__txt1 fadeInUpShort animated\"\u003e体の\u003cspan\u003eコア領域\u003c\/span\u003eを集中ケアして\u003cbr\u003e冷えから腹部を守る\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro02 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro02__inner\"\u003e\n            \u003cdiv class=\"intro02__wrap fadeInUpShort animated\"\u003e\n                \u003cp class=\"intro02__txt1\"\u003eMakuakeで応援購入\u003c\/p\u003e\n                \u003cp class=\"intro02__txt2\"\u003e約\u003cspan class=\"termina\"\u003e¥40,000,000\u003c\/span\u003e達成\u003c\/p\u003e\n                \u003cp class=\"intro02__txt3\"\u003eしたブレインスリープ リカバリー シリーズから\u003cbr\u003e\u003cspan\u003eハラマキモデル\u003c\/span\u003eがついに登場！\u003c\/p\u003e\n                \u003cdiv class=\"intro02__bnr\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_bnr.webp\" alt=\"\" width=\"948\" height=\"376\"\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro02__arrow fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro02_arrow.webp\" alt=\"\" width=\"42\" height=\"108\"\u003e\u003c\/div\u003e\n            \u003cdiv class=\"intro02__img fadeInUpShort animated u-pc\"\u003e\u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro02_img_v2.webp\" alt=\"\" width=\"938\" height=\"984\"\u003e\u003c\/div\u003e\n            \u003cp class=\"intro02__wrap2__ttl fadeInUpShort animated u-sp\"\u003e\u003cspan class=\"termina\"\u003eW\u003c\/span\u003eテクノロジー搭載\u003c\/p\u003e\n            \u003cdiv class=\"intro02__wrap2 fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"intro02__txtwrap\"\u003e\n                    \u003cp class=\"intro02__txtwrap__txt1\"\u003e温熱\u003c\/p\u003e\n                    \u003cp class=\"intro02__txtwrap__txt2\"\u003eメディック\u003cbr\u003eリカバリーファイバー\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro02__cross\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_cross.webp\" alt=\"\" width=\"84\" height=\"84\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"intro02__txtwrap\"\u003e\n                    \u003cp class=\"intro02__txtwrap__txt1\"\u003e睡眠着圧\u003c\/p\u003e\n                    \u003cp class=\"intro02__txtwrap__txt2\"\u003e呼吸コンサルタント\u003cbr class=\"u-pc\"\u003e監修\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro02__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro02_img_sp_v2.webp\" alt=\"\" width=\"770\" height=\"814\"\u003e\u003c\/div\u003e\n            \u003cp class=\"intro02__txt4 u-pc fadeInUpShort animated\"\u003e\u003cspan class=\"termina\"\u003eW\u003c\/span\u003eテクノロジーで、冷えがちな腹部を\u003cspan class=\"bg\"\u003e集中サポート\u003c\/span\u003e\u003c\/p\u003e\n            \u003cp class=\"intro02__txt4 u-sp fadeInUpShort animated\"\u003e冷えがちな腹部を\u003cbr\u003e集中サポート\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro03 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro03__inner\"\u003e\n            \u003cdiv class=\"intro03__txt\"\u003e\n                \u003cp class=\"intro03__txt1 fadeInUpShort animated\"\u003e独自開発の\u003cbr class=\"u-pc\"\u003eリカバリー素材\u003c\/p\u003e\n                \u003cp class=\"intro03__txt2 fadeInUpShort animated termina\"\u003eMEDIC \u003cbr class=\"u-pc\"\u003eRECOVERY\u003cbr\u003eFIBER\u003c\/p\u003e\n                \u003cp class=\"intro03__txt3 fadeInUpShort animated u-pc\"\u003e\n                    地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro03__img\"\u003e\u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080;\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\u003c\/div\u003e\n            \u003cp class=\"intro03__txt4 fadeInUpShort animated u-sp\"\u003e\n                地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro04 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro04__inner\"\u003e\n            \u003cdiv class=\"intro04__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro04_img.webp\" alt=\"\" width=\"1174\" height=\"528\" class=\"fadeInUpShort animated\"\u003e\u003c\/div\u003e\n            \u003cp class=\"intro04__txt fadeInUpShort animated\"\u003e1年を通して、体は冷えるもの・・・\u003cbr\u003eその中でも、\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e様々な原因で体が冷える\u003cbr class=\"u-sp\"\u003e夏\u003c\/span\u003eは\u003cbr class=\"u-pc\"\u003eとても深刻。\u003c\/p\u003e\n            \u003cdiv class=\"intro04__season fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"intro04__season__item\"\u003e\n                    \u003cdiv class=\"intro04__season__item__content\"\u003e\n                        \u003cp class=\"intro04__season__item__ttl\"\u003e夏\u003c\/p\u003e\n                        \u003cdiv class=\"intro04__season__item__check\"\u003e\n                            \u003cp\u003eオフィスなどの屋内と屋外の寒暖差\u003c\/p\u003e\n                            \u003cp\u003e睡眠中のエアコンからの冷気\u003c\/p\u003e\n                            \u003cp\u003e睡眠中に布団を掛けない\u003c\/p\u003e\n                            \u003cp\u003e冷たいものの採り過ぎ\u003c\/p\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"intro04__season__item__img\"\u003e\n                        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro04_img2_model.webp\" alt=\"\" width=\"692\" height=\"420\" class=\"u-pc\"\u003e \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro04_img2_model_sp_v2.webp\" alt=\"\" width=\"516\" height=\"310\" class=\"u-sp\"\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro04__season__item\"\u003e\n                    \u003cp class=\"intro04__season__item__ttl\"\u003e春・秋\u003c\/p\u003e\n                    \u003cdiv class=\"intro04__season__item__check\"\u003e\n                        \u003cp\u003e季節の変わり目\u003cbr class=\"u-pc\"\u003eによる温度差\u003c\/p\u003e\n                        \u003cp\u003e昼夜の寒暖差\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro04__season__item\"\u003e\n                    \u003cp class=\"intro04__season__item__ttl\"\u003e冬\u003c\/p\u003e\n                    \u003cdiv class=\"intro04__season__item__check\"\u003e\n                        \u003cp\u003e冬の気温低下\u003c\/p\u003e\n                        \u003cp\u003e屋内外の寒暖差\u003c\/p\u003e\n                        \u003cp\u003e運動不足\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro05 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro05__inner\"\u003e\n            \u003cp class=\"intro05__txt fadeInUpShort animated\"\u003e睡眠環境の質を高める\u003cbr\u003eニューノーマル ハラマキ\u003c\/p\u003e\n            \u003cdiv class=\"intro05__logo fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_product_logo.webp\" alt=\"BRAINSLEEP HARAMAKI RECOVERY\" width=\"468\" height=\"162\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology\" id=\"technology\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eTECHNOLOGY\u003c\/span\u003eテクノロジー\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__link\"\u003e\n            \u003cul class=\"technology__link__lists animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cli class=\"item fadeInUpShort animated\"\u003e\u003ca class=\"custom-smooth-scroll\" href=\"#tech01\"\u003e\n                        \u003cdiv class=\"technology__link__lists__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_nav01.webp\" alt=\"\" width=\"782\" height=\"722\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__link__lists__title\"\u003e\n                            \u003cspan\u003e01\u003c\/span\u003e遠赤外線輻射熱で、\u003cbr\u003e腹部を集中温熱ケア\n                        \u003c\/h3\u003e\n                    \u003c\/a\u003e\u003c\/li\u003e\n                \u003cli class=\"item fadeInUpShort animated\"\u003e\u003ca class=\"custom-smooth-scroll\" href=\"#tech02\"\u003e\n                        \u003cdiv class=\"technology__link__lists__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_nav02_model.webp\" alt=\"\" width=\"782\" height=\"722\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__link__lists__title\"\u003e\n                            \u003cspan\u003e02\u003c\/span\u003e呼吸の専門家監修\u003cbr\u003e睡眠着圧サポート\n                        \u003c\/h3\u003e\n                    \u003c\/a\u003e\u003c\/li\u003e\n                \u003cli class=\"item fadeInUpShort animated\"\u003e\u003ca class=\"custom-smooth-scroll\" href=\"#tech03\"\u003e\n                        \u003cdiv class=\"technology__link__lists__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_nav03_model.webp\" alt=\"\" width=\"782\" height=\"722\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__link__lists__title no03\"\u003e\n                            \u003cspan\u003e03\u003c\/span\u003eリラックスできる\u003cbr\u003e快適さと清潔さ\n                        \u003c\/h3\u003e\n                    \u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item\" id=\"tech01\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_main_v2.webp\" alt=\"\" width=\"1626\" height=\"920\" class=\"u-pc\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n                            \u003cspan\u003e01\u003c\/span\u003eGENTLE WARM\n                        \u003c\/h2\u003e\n                        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_main_sp_v2.webp\" alt=\"\" width=\"700\" height=\"700\" class=\"u-sp\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e腹部を\u003cbr class=\"u-pc\"\u003e集中温熱ケア\u003c\/h3\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_01\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_01.webp\" alt=\"\" width=\"1626\" height=\"920\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e独自開発新素材\u003cbr\u003eMEDIC RECOVERY FIBER\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                            ナノレベルの厳選したセラミックスを数種類ブレンドしました。独自加工で、高濃度のセラミックスの練り込みに成功。さらに、特殊な糸形状により高い遠赤外線輻射熱効果を実現しました。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_02\"\u003e\n        \u003cdiv class=\"technology__item__inner\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080;\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003eMEDIC RECOVERY FIBER\u003cbr\u003eによる遠赤外線輻射熱\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                            リカバリーを目指して、一から糸と生地を開発。体の体温を効果的に吸収し、遠赤外線として体へ輻射するテクノロジー。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_03\" style=\"margin-bottom: 0;\"\u003e\n        \u003cdiv class=\"technology__item__inner\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_03_model.webp\" alt=\"\" width=\"1628\" height=\"914\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e体のコアである腹部を\u003cbr\u003e集中温熱\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                            お腹や骨盤周りには多くの臓器が集中していて、お腹を温めると内臓の働きが活性化。腹巻きは、日中に冷えたお腹を寝ながら温め、睡眠中のエアコンの冷たい冷気からもお腹を守るのに効果的。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_04\" style=\"margin-top: 24px;\"\u003e\n        \u003cdiv class=\"technology__item__inner\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n                    \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_04_model.webp\" alt=\"\" width=\"1628\" height=\"914\"\u003e\n                    \u003cp style=\"margin-top: 8px;\"\u003e▲本製品使用後のサーモグラフィ\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated u-pc\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\u003cbr\u003e\u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item\" id=\"tech02\" style=\"overflow: hidden;\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_main_model_v2.webp\" alt=\"\" width=\"1626\" height=\"920\" class=\"u-pc\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n                            \u003cspan\u003e02\u003c\/span\u003eSLEEP \u003cbr class=\"u-sp\"\u003eCORE\u003cbr\u003eCOMPRESSION\n                        \u003c\/h2\u003e\n                        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_main_model_sp_v2.webp\" alt=\"\" width=\"700\" height=\"700\" class=\"u-sp\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e睡眠着圧サポート\u003c\/h3\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_01\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\" style=\"margin-top: 0;\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cbr\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\" style=\"width: 100%; margin-right: 0; margin-top: 0;\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\" style=\"margin-bottom: 16px;\"\u003e\n                            睡眠中に、呼吸もメンテナンス\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin: 0;\"\u003e睡眠用着圧\u003cbr class=\"u-sp\"\u003e\u003cspan class=\"technology__item__desc__text__content__desc__frame\"\u003eスリープコアコンプレッション\u003c\/span\u003eで\u003cbr class=\"u-sp\"\u003e体のコア領域をサポート！\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"tech02__wrap1 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"tech02__wrap1__content fadeInUpShort animated\"\u003e\n            \u003cp class=\"tech02__wrap1__content__tag\"\u003e呼吸の専門家監修\u003c\/p\u003e\n            \u003cp class=\"tech02__wrap1__content__ttl\"\u003e\u003cspan\u003e独自開発の睡眠用着圧\u003c\/span\u003e\u003cbr\u003eスリープコアコンプレッション\u003c\/p\u003e\n            \u003cdiv class=\"tech02__wrap1__img u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img01_sp.webp\" alt=\"\" width=\"676\" height=\"676\"\u003e\u003c\/div\u003e\n            \u003cp class=\"tech02__wrap1__content__point\"\u003e監修ポイント\u003c\/p\u003e\n            \u003cp class=\"tech02__wrap1__content__point__txt\"\u003e\n                横隔膜付近に適度な着圧をかけることで、肋骨が下がることをサポート。お腹周りの筋肉にも刺激が加わり、さらに肋骨が下がる仕掛けです。その結果、横隔膜がリラックスできて息が吐きやすくなります。また、全身のリラックス、睡眠環境の質を高めたり、脳を休めたり、体全体のメンテナンスを促すことも期待できます。\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tech02__wrap1__img u-pc\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img01.webp\" alt=\"\" width=\"1428\" height=\"804\"\u003e\u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"tech02__wrap2 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"tech02__wrap2__content fadeInUpShort animated\"\u003e\n            \u003cdiv class=\"tech02__wrap2__trainer\"\u003e\n                \u003cdiv class=\"tech02__wrap2__trainer__head\"\u003e\n                    \u003cdiv class=\"tech02__wrap2__trainer__head__txt\"\u003e\n                        \u003cp class=\"tech02__wrap2__trainer__head__title1\"\u003e呼吸コンサルタント\u003cbr\u003eアスレティックトレーナー\u003c\/p\u003e\n                        \u003cp class=\"tech02__wrap2__trainer__head__name\"\u003e大貫 崇\u003c\/p\u003e\n                        \u003cp class=\"tech02__wrap2__trainer__head__title2\"\u003e（株）BP\u0026amp;CO.代表\u003cbr\u003e呼吸コンサルタント\u003c\/p\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"tech02__wrap2__trainer__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img03.webp\" alt=\"\" width=\"248\" height=\"232\"\u003e\u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cp class=\"tech02__wrap2__trainer__intro\"\u003e大阪大学大学院医学系研究科特任研究員を務め、企業との研究や新規事業開発などを行う。京都にて「呼吸専門サロン\n                    ぶりーずぷりーず」を運営。著書に「きほんの呼吸」など\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"tech02__wrap2__howtouse__pc\"\u003e\n                \u003cp class=\"tech02__wrap2__howtouse__ttl\"\u003e着用方法\u003c\/p\u003e\n                \u003cp class=\"tech02__wrap2__howtouse__txt\"\u003e腹巻の上部部分を胸下の肋骨部分に合わせて、腹部まで覆って着用してください。\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tech02__wrap2__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img02.webp\" alt=\"\" width=\"678\" height=\"678\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"tech02__wrap2__howtouse__sp\"\u003e\n            \u003cp class=\"tech02__wrap2__howtouse__ttl\"\u003e着用方法\u003c\/p\u003e\n            \u003cp class=\"tech02__wrap2__howtouse__txt\"\u003e腹巻の上部部分を胸下の肋骨部分に合わせて、腹部まで覆って着用してください。\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item\" id=\"tech03\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_main_model_v2.webp\" alt=\"\" width=\"1626\" height=\"920\" class=\"u-pc\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n                            \u003cspan\u003e03\u003c\/span\u003eCOMFORT \u003cbr\u003e\u0026amp; CLEAN\n                        \u003c\/h2\u003e\n                        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_main_model_sp_v2.webp\" alt=\"\" width=\"700\" height=\"700\" class=\"u-sp\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e\n                            毎日身に付けたくなる\u003cbr\u003e快適性と清潔性\u003c\/h3\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01\" style=\"margin-bottom: 0;\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/90028aef19444b539ce30ca600e57cfc.mp4\" style=\"aspect-ratio: 1920\/1080;\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e締め付け過ぎない、\u003cbr\u003e高いストレッチ性\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e高いストレッチ性素材で、快適なフィット感が抜群。インナー感覚で着用可能です。\n                        \u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_02\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_02_v2.webp\" alt=\"\" width=\"1628\" height=\"916\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e着用中の嫌なムレ感を解消\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e吸湿放湿性の高い素材を採用することで、着用時のムレ感を解消して、快適さを実現\n                        \u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_03\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_03_v2.webp\" alt=\"\" width=\"1628\" height=\"916\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e抗菌防臭加工で清潔\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e家庭洗濯はもちろん、抗菌防臭機能で嫌な臭いのもとの菌の増殖を防ぎます。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"spec__title\" id=\"voice\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eMONITOR’S VOICE\u003c\/span\u003eモニターの声\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"voice__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"voice__left\"\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user01.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        \u003cspan\u003e温度感が絶妙\u003c\/span\u003e！安心の腹巻き\u003cbr\u003eこの腹巻きは、使い始めてすぐに「これはいいかも」と感じました。特に気に入ったのは、温度感がちょうどよく、\u003cspan\u003e暑すぎず寒すぎず、心地よいぬくもりが続く\u003c\/span\u003eところ。おかげで、寝ている間も快適で、なんとなく熟睡できたような気がします。朝起きたときのスッキリ感が違いました。温度感がちょうどよくて、結構すきです。\u003cbr\u003e\u003cspan\u003e締め付け感がほとんどないので、リラックスして眠れるのも大きな魅力\u003c\/span\u003eです。長さと厚みがしっかりあるので、お腹全体を包み込んでくれる安心感があり、\u003cspan\u003e冷えが気になる夜も安心して使えます\u003c\/span\u003e。生地も丈夫で高級感があり、長く愛用できそうです。\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 男性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user02.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        普段ハラマキは使用しませんでしたが、お腹が温まるからか\u003cspan\u003e普段より朝のトイレの回数が激減\u003c\/span\u003e。普段は大体お腹が痛くて4~5回行くのですがこのハラマキをつけた数日は0~1回程度で、お腹のつらさがありませんでした。着圧具合は丁度良い感じでした。しっかりと温まりますが、\u003cspan\u003e薄手なので日中も睡眠中も常時つけていても違和感がなく丁度いい\u003c\/span\u003eです。\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 男性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__right\"\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user03.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        \u003cspan\u003eストレスフリーな心地よい着圧\u003c\/span\u003eで着心地がよかったので、睡眠時だけでなく日中も着用したいなと思いました。また、着用部分がポカポカと温かさが維持されるため、\u003cspan\u003e冷え対策にもつながり嬉しい\u003c\/span\u003eです。\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user04.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        \u003cspan\u003eお腹が弱い夫\u003c\/span\u003eにプレゼント。\u003cspan\u003e超痩せ型なのですが、問題なく着用できており\u003c\/span\u003e、お腹がじわじわ温かくなるものの、ムレ感が気になったり、\u003cspan\u003e暑すぎるということがない絶妙な温度感\u003c\/span\u003eのよう。日頃トイレにこもる時間が長く、生活の中で「夫がトイレから出てくるの待ち」という時間が少なからず発生していたのですが、それがかなり減って私にも恩恵がありました!\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"spec__title\" id=\"story\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eDEVELOPMENT STORY\u003c\/span\u003e開発秘話\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003cp class=\"story animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        遠赤外線輻射熱機能のメディックリカバリーファイバーを採用したハラマキです。\u003cbr\u003e腹巻きというと寒いシーズンのイメージが強いと思います。しかし、今回は夏の体をメンテナンスして頂くご提案です。近年の夏は、極端な高温でありながらその期間が長期化しています。その期間は、エアコンからの冷気や気候や屋内外の寒暖差、冷たいものの採り過ぎなど様々な体を冷やす要因が存在します。特に、お腹の冷えは皆さんが抱える悩みだと考えています。睡眠時間を利用して、お腹を温めることをご提案しております。\u003cbr\u003eそれに加えて、アスレティックトレーナーでありながら呼吸コンサルタントの大貫崇さんに監修して頂き、スリープコアコンプレッション（睡眠用着圧）を開発しました。寝ている間にメンテナンスできるハラマキ、この機会に毎日のルーティンに取り入れていただければ幸いです。\u003cbr\u003e開発者：町田\n        貴裕\u003c\/p\u003e\n    \u003csection class=\"spec__title\" id=\"spec\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eSPEC\u003c\/span\u003e仕様\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"size\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_spec.webp\" alt=\"\" width=\"914\" height=\"724\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e生産国：日本\u003cbr\u003e\u003cspan style=\"padding-left: 3.9em; text-indent: -3.9em; display: inline-block;\"\u003eサイズ：Mサイズ\n                                約27×30（㎝） \/ \u003cbr class=\"u-sp\"\u003eLサイズ 約27×35（㎝）\u003c\/span\u003e\u003cbr\u003e\u003cspan style=\"padding-left: 3em; text-indent: -3em; display: inline-block;\"\u003e素材：ポリエステル52％\n                                ナイロン44％ ポリウレタン4％\u003c\/span\u003e\u003cbr\u003e\u003cbr\u003e■対応サイズガイド（ユニセックス）\u003c\/p\u003e\n                        \u003cimg class=\"sizetable\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_size.webp\" alt=\"\" width=\"660\" height=\"158\"\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub gitf_block\" id=\"tech03_02\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_giftwrapping.webp\" alt=\"\" width=\"1628\" height=\"916\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003eギフトにもおすすめ\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e高級感のあるポリエステルツイル素材を使用。\n                            ベージュの生地とリボンで統一し、ブレインスリープのロゴを洗練されたサイズ感で配置。 幅広で豪華なリボンが、プレゼントに相応しい上質な高級感を演出します。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"last animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"last__bg fadeInUpShort animated\"\u003e\n            \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_last_bg_model_v2.webp\" alt=\"\" width=\"2000\" height=\"1124\" class=\"u-pc\"\u003e \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_last_bg_model_sp_v2.webp\" alt=\"\" width=\"750\" height=\"940\" class=\"u-sp\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"last__inner\"\u003e\n            \u003cdiv class=\"awakenyourpossibility\"\u003e\n                \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_awakenyourpossibility.webp\" alt=\"\" width=\"626\" height=\"318\"\u003e \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_awakenyourpossibility_sp.webp\" alt=\"\" width=\"386\" height=\"82\"\u003e\n            \u003c\/div\u003e\n            \u003cp class=\"last__txt\"\u003e冷えやすい夏にこそ効く\u003cbr\u003e次世代ハラマキ\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection id=\"faq\" class=\"faq js-box\"\u003e\n        \u003cdiv class=\"section__title\"\u003e\n            \u003ch2 class=\"section__title__text\"\u003e\n                \u003cspan\u003eFAQ\u003c\/span\u003eよくあるご質問\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"faq__main\"\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e使用シーンはいつですか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        睡眠時用の腹巻きとして設計しておりますが、日中着用いただいても問題ございません。睡眠時だけでなく、リラックスタイムや日常生活でもお使いいただけます。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e着用の仕方を教えてください。\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003eBRAIN\n                        SLEEPのロゴで上下をご確認ください。腹巻の上部分を胸下の肋骨部分に合わせて、腹部まで覆って着用してください。着衣の上から、若しくは地肌に直接着用いただいても問題ございません。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003eサイズはどう選べばよいですか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        ユニセックスサイズです。ウエストの対応サイズは、Mサイズ（約64－79㎝）、Lサイズ（約79－94㎝）です。ご自身のウエストサイズに合わせてお選びください。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003eカラー展開はありますか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003eブラック1色です。どんなシーンにも合わせやすいベーシックカラーとなっています。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e洗濯はできますか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        はい、家庭洗濯機で洗濯可能です。白・淡色製品と分けて洗濯ネットに入れて洗濯してください。また、漂白剤（塩素系・酸素系）の使用はお避けください。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e乾燥機は使用できますか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e製品の縮みや劣化の原因になるので、タンブル乾燥はお避けください。日陰での吊り干しをお勧めします。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e生産工場について教えてください。\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        『奈良巻き』として有名な腹巻きの生産地である奈良県の歴史ある工場で生産されています。伝統的な技術と品質にこだわって製造しております。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cstyle\u003e\n    .intro02__inner {\n        min-width: 900px;\n    }\n\n    @media screen and (max-width:749px) {\n        .intro02__inner {\n            min-width: unset;\n        }\n    }\n\u003c\/style\u003e\n\u003cp\u003e\n    \u003cscript src=\"https:\/\/cdn.jsdelivr.net\/npm\/slick-carousel@1.8.1\/slick\/slick.min.js\"\u003e\u003c\/script\u003e\n    \u003cscript\u003e\n        jQuery(\".faq__item__question\").click(function () {\n            if (jQuery(this).next('.faq__item__answer').is(':visible')) {\n                jQuery(this).next('.faq__item__answer').stop().slideUp();\n                jQuery(this).removeClass('open');\n            } else {\n                jQuery(this).next('.faq__item__answer').stop().slideDown();\n                jQuery(this).addClass('open');\n            }\n        });\n        jQuery(function () {\n            animate();\n            jQuery(window).on(\"scroll\", function () {\n                animate();\n            });\n        });\n        function animate() {\n            jQuery('.animatedParent').each(function () {\n                var offset = jQuery(this).data('offset');\n                if (offset) {\n                    offset = offset;\n                } else {\n                    offset = 0;\n                }\n                if (jQuery(this).isInViewport(offset)) {\n                    var parent = jQuery(this);\n                    delay = Number(parent.attr('data-sequence'));\n                    jQuery(jQuery(this).find('.animated')).each(function (index) {\n                        jQuery(jQuery(this)).delay(index * delay).queue(function (next) {\n                            if (!jQuery(this).hasClass('go')) {\n                                jQuery(this).addClass(\"go\");\n                                if (jQuery(this).parents('.full__recovery__svg__wrapper').length) {\n                                    jQuery(this).attr('class', 'animated fadeInRightShort slower go');\n                                }\n\n                            }\n                            next();\n                        });\n                    });\n                }\n            });\n        }\n        jQuery.fn.isInViewport = function (offset) {\n            \/\/ console.log('isInViewport');\n            var elementTop = jQuery(this).offset().top + offset;\n            var elementBottom = elementTop + jQuery(this).outerHeight();\n\n            var viewportTop = jQuery(window).scrollTop();\n            var viewportBottom = viewportTop + jQuery(window).height();\n\n            return elementBottom \u003e viewportTop \u0026\u0026 elementTop \u003c viewportBottom;\n        };\n\n        jQuery(function () {\n            const param = location.search;\n            if (param.indexOf(\"?ad\") === 0) {\n                console.log(\"通常広告\");\n\n                const fixed_01 = document.getElementById(\"fixed_01\");\n                fixed_01.style.display = \"none\";\n\n                \/\/商品ページヘッダー非表示\n                jQuery(\".shopify-section-group-header-group\").css({\n                    display: \"none\",\n                });\n\n                \/\/商品ページヘッダー非表示\n                jQuery(\".rwlp__header__wrapper\").css({\n                    display: \"block\",\n                });\n\n                if (window.matchMedia(\"(max-width: 768px)\").matches) {\n                    \/\/画面横幅が768px以下のときの処理\n                    jQuery(\"body\").css({\n                        \"padding-top\": \"65px\",\n                    });\n                } else {\n                    \/\/画面横幅が769px以上のときの処理\n                    jQuery(\"body\").css({\n                        \"padding-top\": \"90px\",\n                    });\n                }\n\n                \/\/商品ページ流入時　要素表示\n                jQuery(\".ad_off\").css({\n                    display: \"none\",\n                });\n\n                \/\/広告ページ（yahoo）流入時　要素非表示\n                jQuery(\".y_ad_on\").css({\n                    'cssText': 'display:none !important;'\n                    \/\/ display: \"none\",\n                });\n\n                \/\/広告ページ（通常）、商品ページ流入時　要素表示\n                jQuery(\".ad_on_off\").css({\n                    'cssText': 'display:block !important;'\n                    \/\/ display: \"block\",\n                });\n\n                \/\/広告ページ（通常、yahoo）流入時　要素表示\n                jQuery(\".ad_on\").css({\n                    display: \"block\",\n                });\n\n            } else {\n                console.log(\"なにもなし\");\n\n                \/\/広告ページ（yahoo）流入時　要素非表示\n                jQuery(\".y_ad_on\").css({\n                    'cssText': 'display:none !important;'\n                    \/\/ display: \"none\",\n                });\n\n                \/\/商品ページ流入時　要素表示\n                jQuery(\".ad_off\").css({\n                    display: \"block\",\n                });\n\n                \/\/商品ページ流入時　要素表示\n                jQuery(\".ad_on\").css({\n                    display: \"none\",\n                });\n            }\n        });\n\n        var startPos = 0,\n            winScrollTop = 0;\n        $(window).on(\"scroll\", function () {\n            winScrollTop = $(this).scrollTop();\n            if (winScrollTop \u003e= startPos) {\n                if (winScrollTop \u003e= 130) {\n                    $(\".rwlp__header__wrapper\").addClass(\"animate\");\n                    $(\".rwlp__header__wrapper\").addClass(\"hide\");\n                    $(\".rwlp__header__wrapper\").addClass(\"fixed\");\n                } else if (winScrollTop \u003e= 90) {\n                    $(\".rwlp__header__wrapper\").addClass(\"fixed\");\n                    $(\".rwlp__header__wrapper\").removeClass(\"animate\");\n                } else {\n                    $(\".rwlp__header__wrapper\").removeClass(\"fixed\");\n                }\n            } else {\n                $(\".rwlp__header__wrapper\").removeClass(\"hide\");\n            }\n            startPos = winScrollTop;\n        });\n    \u003c\/script\u003e\n\u003c\/p\u003e\n\u003cstyle\u003e\n    .spec__item__desc__text__content__title,\n    .technology__link__lists__title,\n    .technology__item__desc__text__content__title {\n        font-family: \"游ゴシック体\", YuGothic, \"Yu Gothic M\", \"游ゴシック Medium\", \"Yu Gothic Medium\", \"Yu Gothic Pr6N M\", sans-serif;\n        visibility: visible !important;\n    }\n\u003c\/style\u003e","brand":"株式会社ブレインスリープ","offers":[{"title":"M","offer_id":47071092474078,"sku":"W0015A1-MEBK","price":8800.0,"currency_code":"JPY","in_stock":true},{"title":"L","offer_id":47071092539614,"sku":"W0015A1-LABK","price":8800.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/thumbnail_haramaki_1.webp?v=1754378307"},{"product_id":"socks","title":"ブレインスリープ ソックス リカバリー","description":"\u003cstyle\u003e\n.rwlp__header__wrapper {\n  background: #a0c0db;\n  height: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  z-index: 9;\n}\n@media screen and (min-width: 750px) {\n  .rwlp__header__wrapper {\n    padding: 0 30px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__wrapper {\n    padding: 0 20px;\n  }\n}\n.rwlp__header {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n@media screen and (min-width: 1200px) {\n  .rwlp__header {\n    height: 90px;\n  }\n}\n@media screen and (max-width: 1199px) {\n  .rwlp__header {\n    height: 65px;\n  }\n}\n@media screen and (min-width: 750px) {\n  .rwlp__header__logo {\n    width: 85px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__logo {\n    width: 70px;\n  }\n}\n@media screen and (min-width: 750px) {\n  .rwlp__header__menu__wrapper {\n    margin: 0 30px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__menu__wrapper {\n    \/* margin: 0 20px; *\/\n  }\n}\n.rwlp__header__menu__item {\n  display: inline-block;\n}\n@media screen and (min-width: 1200px) {\n  .rwlp__header__menu__item + .rwlp__header__menu__item {\n    margin-left: 35px;\n  }\n}\n@media screen and (min-width: 750px) and (max-width: 1199px) {\n  .rwlp__header__menu__item + .rwlp__header__menu__item {\n    margin-left: 30px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__menu__item + .rwlp__header__menu__item {\n    margin-left: 15px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__menu__item.rwlp__hidden__sm {\n    display: none;\n  }\n}\n@media screen and (min-width: 1200px) {\n  .rwlp__header__menu__link {\n    font-size: 14px;\n  }\n}\n@media screen and (max-width: 1199px) {\n  .rwlp__header__menu__link {\n    font-size: 14px;\n  }\n}\n.rwlp__header__wrapper.fixed {\n  position: fixed;\n  top: -90px;\n  transition: unset;\n}\n.rwlp__header__wrapper.animate {\n  transition: top 0.15s ease-out;\n  top: 0;\n}\n.rwlp__header__wrapper.hide {\n  top: -90px;\n}\n\n.rwlp__wrapper,\n#MainContent,\nhtml.js {overflow: unset;}\n@media screen and (max-width:749px){\n  .rwlp__wrapper,\n  #MainContent,\n  html.js {overflow: unset!important;}\n}\n.rwlp__wrapper div:empty {display: initial;}\nhtml {scroll-behavior: smooth;}\n.rte.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {transform: unset;animation: unset;opacity: 1;}\n\n.rwlp__wrapper a:empty,\n.rwlp__wrapper div:empty {display: initial;}\n.rwlp__wrapper video {height: auto;width: 100%;}\n.rwlp__wrapper a {text-decoration: unset;color: #000;}\n.rwlp__wrapper ul {list-style: none;}\n.technology__link__lists {padding: 0;}\n.rwlp__wrapper img {width: 100%;height: auto;max-width: 100%;border:unset;}\n.faq__item img {width: auto;max-width: 100%;}\n\n.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.fadeInUpShort{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\n\n\/* margin padding 調整*\/\n.sleep__info__quality__golden__title {margin:0}\n#cover.spec__item .spec__item__desc__text__content__title {margin-top: 0;}\n.kv img,\n.last img,\n.technology__item__desc__img img,\n.line__bnr img,\n.technology__link__lists__title{margin-bottom: 0;}\n.technology__item__feature {padding-left: 0!important;}\n.technology__link__lists{padding:0!important}\n\nbody{font-family:YuGothic,'Yu Gothic',\"Yu Gothic Pr6N R\",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif}.termina{font-family:Termina,\"游ゴシック体\",YuGothic,\"Yu Gothic M\",\"游ゴシック Medium\",\"Yu Gothic Medium\",\"Yu Gothic Pr6N M\",sans-serif!important;font-weight:400}.rwlp__wrapper{color:#000}body,details,div,fieldset,form,h1,h2,h3,h4,header,html,iframe,img,label,legend,li,nav,p,section,small,span,summary,ul,video{margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:0 0}button,input,select{appearance:none}.fadeInUpShort{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}body{overflow-x:hidden}h1,h2,h3,h4{font-weight:400!important}.technology__item__desc__img{position:relative;width:58.1428571428571vw;flex:1}.technology__item__desc__img video{width:100%;height:auto}.technology__item__desc__img img{width:100%;height:auto}.technology__item__desc__text__content__title{font-size:30px;font-weight:500;letter-spacing:-.06em;line-height:1.733333333333333}@media screen and (max-width:749px){.technology__item__desc__img{margin-left:auto;width:calc(100% - 20px)}.technology__item__desc__img img{height:100%}.technology__item__desc__text__content__title{font-size:23px;line-height:1.84}}.u-pc{display:block!important}.u-sp{display:none!important}@media screen and (max-width:767px){.u-pc{display:none!important}.u-sp{display:block!important}}img{vertical-align:bottom}.kv{position:relative}.kv__txt{position:absolute;font-size:3.16428vw;top:7.5vw;left:8.4285vw;line-height:1.35;font-family:\"Yu Gothic Pr6N D\",\"游ゴシック体\",YuGothic,sans-serif}.kv__features{position:absolute;top:17vw;left:8.4285vw;display:flex;gap:0.71428vw 0;flex-wrap:wrap;justify-content:space-between;width:30vw}.kv__features__item{background-size:100% 100%;display:flex;align-items:center;justify-content:center;width:14.5vw;height:3.1428vw;font-size:1.42857vw}.intro01__txt3{line-height:1.4;margin-bottom:40px}.intro01__txt3 span{font-size:29px;border-bottom:1px solid #fff;padding-bottom:4px}@media screen and (max-width:767px){.kv__txt{font-size:6.2666vw;top:39.4666vw;left:8.18666vw;font-feature-settings:'palt'}.kv__features{top:57.6vw;left:8.4285vw;display:block;width:28.8vw}.kv__features__item{width:28.8vw;height:6.256vw;font-size:2.837333vw;margin-bottom:1.6vw}.intro01__txt3{margin-bottom:16px}.intro01__txt3 span{font-size:29px;border-bottom:1px solid #fff;padding-bottom:4px}}\n.u-pc {\n  display: block!important\n}\n.u-sp {\n  display: none!important\n}\n\n@media screen and (max-width:767px) {\n  .u-pc {\n    display: none!important\n  }\n  .u-sp {\n    display: block!important\n  }\n}\n\n\/* giftブロック調整用 *\/\n  .gitf_block{\n    border-top: 1px #000 solid;\n    padding-top: 100px;\n    margin-top: 0px;\n  }\n\n@media screen and (max-width:767px) {\n  .gitf_block{\n    padding-top: 50px;\n  }\n}\n\n\n\u003c\/style\u003e\n\n\u003cdiv class=\"rwlp__wrapper\"\u003e\n  \u003cheader style=\"display: none\" class=\"rwlp__header__wrapper\"\u003e\n    \u003cdiv class=\"\"\u003e\n      \u003cheader class=\"rwlp__header\"\u003e\n        \u003ca href=\"#\" class=\"rwlp__header__logo\"\u003e\n          \u003cimg height=\"40\" width=\"85\" alt=\"ロゴ：Brain Sleep\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_adpage_logo.webp\"\u003e\n        \u003c\/a\u003e\n        \u003cnav class=\"rwlp__header__menu__wrapper\"\u003e\n          \u003cul class=\"rwlp__header__menu\"\u003e\n            \u003cli class=\"rwlp__header__menu__item\"\u003e\n              \u003ca href=\"#technology\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eテクノロジー\u003c\/a\u003e\n            \u003c\/li\u003e\n            \u003cli class=\"rwlp__header__menu__item\"\u003e\n              \u003ca href=\"#spec\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003e仕様\u003c\/a\u003e\n            \u003c\/li\u003e\n            \u003cli class=\"rwlp__header__menu__item\"\u003e\n              \u003ca href=\"#faq\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eFAQ\u003c\/a\u003e\n            \u003c\/li\u003e\n          \u003c\/ul\u003e\n        \u003c\/nav\u003e\n      \u003c\/header\u003e\n    \u003c\/div\u003e\n  \u003c\/header\u003e\n  \u003csection class=\"kv\"\u003e\n    \u003cdiv class=\"kv__bg\"\u003e\n      \u003cimg class=\"u-pc lozad\" loading=\"lazy\" decoding=\"async\" src=\"\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_bg_model.webp?2\" alt=\"\" width=\"2000\" height=\"1124\"\u003e\n      \u003cimg class=\"u-sp lozad\" loading=\"lazy\" decoding=\"async\" src=\"\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_bg_model_sp.webp?2\" alt=\"\" width=\"750\" height=\"1014\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kv__inner\"\u003e\n      \u003cp class=\"kv__txt\"\u003e究極の\u003cbr\u003e睡眠着圧ソックス\u003c\/p\u003e\n      \u003cdiv class=\"kv__features\"\u003e\n        \u003cdiv class=\"kv__features__item\"\u003eむくみ改善\u003c\/div\u003e\n        \u003cdiv class=\"kv__features__item\"\u003eリンパの流れ改善\u003c\/div\u003e\n        \u003cdiv class=\"kv__features__item\"\u003e血行促進\u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kv__logo\"\u003e\n        \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo.webp\" alt=\"\" width=\"1082\" height=\"136\"\u003e\n        \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo_sp.webp\" alt=\"\" width=\"276\" height=\"132\"\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"kv__tag\"\u003e一般医療機器\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro01 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro01__inner\"\u003e\n      \u003cdiv class=\"intro01__left fadeInUpShort animated\"\u003e\n        \u003cp class=\"intro01__txt1\"\u003eMakuakeで応援購入\u003c\/p\u003e\n        \u003cp class=\"intro01__txt2\"\u003e約\u003cspan class=\"termina\"\u003e¥40,000,000\u003c\/span\u003e達成\u003c\/p\u003e\n        \u003cp class=\"intro01__txt3 u-pc\"\u003eしたブレインスリープ リカバリー シリーズから\u003cbr\u003e\u003cspan\u003eソックスモデル\u003c\/span\u003eがついに登場！\u003c\/p\u003e\n        \u003cp class=\"intro01__txt3 u-sp\"\u003eブレインスリープ リカバリー シリーズから\u003cbr\u003e\u003cspan\u003eソックスモデル\u003c\/span\u003eがついに登場！\u003c\/p\u003e\n        \u003cdiv class=\"intro01__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_makuake.webp?2\" alt=\"\" width=\"980\" height=\"390\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"intro01__arrow fadeInUpShort animated\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro01_arrow.webp\" alt=\"\" width=\"202\" height=\"94\" class=\"u-pc\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro01_arrow_sp.webp\" alt=\"\" width=\"70\" height=\"150\" class=\"u-sp\"\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"intro01__right fadeInUpShort animated\"\u003e\n        \u003cp class=\"intro01__txt4\"\u003e\u003cspan\u003e独自開発睡眠着圧\u003c\/span\u003eで\u003c\/p\u003e\n        \u003cdiv class=\"intro01__features\"\u003e\n          \u003cp class=\"intro01__features__item\"\u003eむくみ\u003cbr\u003e改善\u003c\/p\u003e\n          \u003cp class=\"intro01__features__item\"\u003e血行促進\u003c\/p\u003e\n          \u003cp class=\"intro01__features__item\"\u003eリンパの\u003cbr\u003e流れ改善\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro02 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro02__inner\"\u003e\n      \u003cdiv class=\"fadeInUpShort animated\"\u003e\n        \u003cp class=\"intro02__txt\"\u003e20種の機能を搭載した\u003cbr\u003e究極の睡眠特化ソックス\u003c\/p\u003e\n        \u003cdiv class=\"intro02__wrap\"\u003e\n          \u003cdiv class=\"intro02__bg\"\u003e\n            \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/32f715cfd66f4ad39215b3e76391491f.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"intro02__features\"\u003e\n            \u003cdiv class=\"intro02__features__head\"\u003e\n\u003cspan class=\"termina\"\u003e20\u003c\/span\u003e種の機能\u003c\/div\u003e\n            \u003cdiv class=\"intro02__features__left\"\u003e\n              \u003cp class=\"intro02__features__item\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eむくみ改善\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003e血行促進\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eリンパの流れ改善\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e段階着圧設計の採用\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eふくらはぎサポート\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eテーピングホールド\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e遠赤外線輻射熱\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e吸湿発熱\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e吸湿放湿\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eつま先熱放散\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro02__features__right\"\u003e\n              \u003cp class=\"intro02__features__item\"\u003e抗菌防臭\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eかかとの包み込み\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e横アーチサポート\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e履きやすさ\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e食い込み軽減\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eメッシュで通気性\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eパイル底で足裏温め\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eなめらかな触感\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eずれ落ち防止\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eつま先ずれ防止\u003c\/p\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro03 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro03__inner\"\u003e\n      \u003cdiv class=\"intro03__txt\"\u003e\n        \u003cp class=\"intro03__txt1 fadeInUpShort animated\"\u003eメディックリカバリーファイバーで\u003cbr\u003e疲れた足を集中温熱\u003c\/p\u003e\n        \u003cp class=\"intro03__txt2 fadeInUpShort animated termina\"\u003eMEDIC \u003cbr class=\"u-pc\"\u003eRECOVERY\u003cbr\u003eFIBER\u003c\/p\u003e\n        \u003c!-- \u003cp class=\"intro03__txt2__ja fadeInUpShort animated termina\"\u003eメディック リカバリー ファイバー\u003c\/p\u003e --\u003e\n        \u003cp class=\"intro03__txt3 fadeInUpShort animated u-pc\"\u003e地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"intro03__img\"\u003e\n        \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"intro03__txt4 fadeInUpShort animated u-sp\"\u003e地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro04 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro04__inner\"\u003e\n      \u003cp class=\"intro04__ttl__en termina fadeInUpShort animated\"\u003eISSUE\u003c\/p\u003e\n      \u003cp class=\"intro04__ttl fadeInUpShort animated\"\u003e足の疲れの悩み×睡眠の質の悩みは\u003cbr\u003eお互い関連していると言われています\u003c\/p\u003e\n      \u003cp class=\"intro04__txt fadeInUpShort animated\"\u003e長時間のデスクワークや立ち仕事、そして日々の家事…。\u003cbr\u003e日中の活動では、重力の影響によって足に大きな負担がかかっています。\u003cbr\u003e\u003cbr\u003eその結果、足の疲れや不調は深刻化し、放置すれば睡眠の質にまで影響を及ぼすことも。\u003cbr\u003e実際、現代人の約7割が足の疲れに悩んでいるとも言われています。\u003cbr\u003e\u003cbr\u003eそのため、足と睡眠を同時にケアする総合的なアプローチが求められています。\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro05 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro05__head fadeInUpShort animated\"\u003e\n      \u003cp class=\"intro05__head__ttl\"\u003e体の重力が軽減される\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e睡眠時に足をケアする\u003c\/span\u003e事は効果的\u003c\/p\u003e\n      \u003cdiv class=\"intro05__head__wrap\"\u003e\n        \u003cdiv class=\"intro05__head__body\"\u003e\n          \u003cp class=\"intro05__head__txt1\"\u003e\u003cspan\u003e第2の心臓といわれるふくらはぎを\u003c\/span\u003e\u003cbr class=\"u-sp\"\u003e寝ている間に集中メンテナンス\u003c\/p\u003e\n          \u003cp class=\"intro05__head__txt2\"\u003e睡眠の質は血行と深く関わり、足の血流が良好だと体温調節が円滑に保たれ、深い睡眠につながります。ソックスリカバリーは、段階着圧と遠赤外線輻射熱の機能により血行を改善し、サポートします。\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"intro05__head__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro05_figure.webp\" alt=\"\" width=\"1020\" height=\"776\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"intro05__bottom fadeInUpShort animated\"\u003e\n      \u003cp class=\"intro05__bottom__txt\"\u003e\u003cspan\u003eソックスリカバリー\u003c\/span\u003eで、\u003cspan\u003e好循環へ\u003c\/span\u003e導きます\u003c\/p\u003e\n      \u003cdiv class=\"intro05__bottom__img\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro05_img.webp\" alt=\"\" width=\"1996\" height=\"428\" class=\"u-pc\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro05_img_sp.webp\" alt=\"\" width=\"750\" height=\"314\" class=\"u-sp\"\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro06 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro06__img\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro06_bg_model.webp?2\" alt=\"\" width=\"2000\" height=\"1192\" class=\"u-pc\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro06_bg_model_sp.webp?2\" alt=\"\" width=\"751\" height=\"769\" class=\"u-sp\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"intro06__inner\"\u003e\n      \u003cp class=\"intro06__txt\"\u003e限られた睡眠時間で\u003cbr\u003eリカバリー\u003c\/p\u003e\n      \u003cdiv class=\"intro06__logo\"\u003e\n        \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo.webp\" alt=\"\" width=\"1082\" height=\"136\"\u003e\n        \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo_sp.webp\" alt=\"\" width=\"276\" height=\"132\"\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"intro06__tag\"\u003e一般医療機器\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"technology\" id=\"technology\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eTECHNOLOGY\u003c\/span\u003eテクノロジー\n      \u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"technology__link\"\u003e\n      \u003cul class=\"technology__link__lists animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n\n        \u003cli class=\"item fadeInUpShort animated\"\u003e\n          \u003ca class=\"custom-smooth-scroll\" href=\"#tech01\"\u003e\n            \u003cdiv class=\"technology__link__lists__img\"\u003e\n              \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_nav01.webp\" alt=\"\" width=\"784\" height=\"722\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__link__lists__title\"\u003e\n\u003cspan\u003e01\u003c\/span\u003e血行促進し\u003cbr class=\"u-sp\"\u003eリカバリー\u003c\/h3\u003e\n          \u003c\/a\u003e\n        \u003c\/li\u003e\n\n        \u003cli class=\"item fadeInUpShort animated\"\u003e\n          \u003ca class=\"custom-smooth-scroll\" href=\"#tech02\"\u003e\n            \u003cdiv class=\"technology__link__lists__img\"\u003e\n              \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_nav02.webp?2\" alt=\"\" width=\"784\" height=\"722\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__link__lists__title\"\u003e\n\u003cspan\u003e02\u003c\/span\u003e独自開発素材で\u003cbr\u003e集中温熱\u003c\/h3\u003e\n          \u003c\/a\u003e\n        \u003c\/li\u003e\n        \u003cli class=\"item fadeInUpShort animated\"\u003e\n          \u003ca class=\"custom-smooth-scroll\" href=\"#tech03\"\u003e\n            \u003cdiv class=\"technology__link__lists__img\"\u003e\n              \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_nav03.webp?2\" alt=\"\" width=\"784\" height=\"722\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__link__lists__title no03\"\u003e\n\u003cspan\u003e03\u003c\/span\u003eリカバリーと睡眠の為の\u003cbr class=\"u-pc\"\u003e機能を搭載\u003c\/h3\u003e\n          \u003c\/a\u003e\n        \u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item\" id=\"tech01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_main_model.webp\" alt=\"\" width=\"1628\" height=\"920\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n\u003cspan\u003e01\u003c\/span\u003eRECOVERY\u003c\/h2\u003e\n            \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\n              \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_main_model_sp.webp\" alt=\"\" width=\"712\" height=\"710\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e血行促進しリカバリー\u003c\/h3\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e一般医療機器ソックスで、\u003cbr\u003e寝ながらメンテナンス\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_01.webp?2\" alt=\"\" width=\"1632\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e一般医療機器ソックスで、\u003cbr\u003e寝ながらメンテナンス\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e日々の睡眠時間を効果的に利用。\u003cbr\u003e独自開発の睡眠コンプレッションで、血行促進・リンパの流れ改善・むくみ改善を実現。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e独自開発の睡眠着圧\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"border: 1px solid #000;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_02.webp?2\" alt=\"\" width=\"1624\" height=\"906\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e独自開発の睡眠着圧\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e足首からふくらはぎにかけて絶妙な段階着圧値を設定して、睡眠中にメンテナンスが出来ます。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"technology__item\" id=\"tech02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_main.webp?2\" alt=\"\" width=\"1628\" height=\"920\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n\u003cspan\u003e02\u003c\/span\u003eLEG HEAT\u003c\/h2\u003e\n            \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\n              \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_main_sp.webp?2\" alt=\"\" width=\"704\" height=\"706\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003eメディックリカバリー\u003cbr\u003eファイバーで集中温熱\u003c\/h3\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e独自開発素材\u003cbr\u003eMEDIC RECOVERY FIBER\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_01.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e独自開発素材\u003cbr\u003eMEDIC RECOVERY FIBER\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eナノレベルの厳選したセラミックスを数種類ブレンドしました。独自加工で、高濃度のセラミックスの練り込みに成功。さらに、特殊な糸形状により高い遠赤外線輻射熱効果を実現しました。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eMEDIC RECOVERY FIBER\u003cbr\u003eによる遠赤外線輻射熱\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eMEDIC RECOVERY FIBER\u003cbr\u003eによる遠赤外線輻射熱\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eリカバリーを目指して、一から糸と生地を開発。体の体温を効果的に吸収し、遠赤外線として体へ輻射するテクノロジー。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_03\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eソックスリカバリーを\u003cbr\u003eはくだけで、31.4℃に温熱\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_03.webp?2\" alt=\"\" width=\"1632\" height=\"918\"\u003e\n          \u003cp class=\"technology__item__desc__img__txt\"\u003e▲本製品使用後のサーモグラフィ\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eソックスリカバリーを\u003cbr\u003eはくだけで、31.4℃に温熱\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eメディックリカバリーファイバーの遠赤外線輻射熱の効果で0.6℃温度上昇し、疲れた足をしっかり温熱します。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"technology__item\" id=\"tech03\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cvideo class=\"u-pc\" playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/32f715cfd66f4ad39215b3e76391491f.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n\u003cspan\u003e03\u003c\/span\u003eCOMFORT\u003cbr\u003eFUNCTION\u003c\/h2\u003e\n            \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\n              \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/32f715cfd66f4ad39215b3e76391491f.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\n            \u003c\/video\u003e\n\u003c\/div\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003eリカバリーと睡眠の為の\u003cbr\u003e20種の機能を搭載\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e睡眠の為の20種の機能を搭載した超多機能ソックス。\u003cbr\u003e熱放散をしながら疲れた足を徹底的にメンテナンス。\u003c\/p\u003e\n            \u003cdiv class=\"u-sp\"\u003e\n              \u003cdiv class=\"intro02__features\" style=\"width: calc(100% - 40px);margin-top: 24px;\"\u003e\n                \u003cdiv class=\"intro02__features__head\"\u003e\n\u003cspan class=\"termina\"\u003e20\u003c\/span\u003e種の機能\u003c\/div\u003e\n                \u003cdiv class=\"intro02__features__left\"\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eむくみ改善\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003e血行促進\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eリンパの流れ改善\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e段階着圧設計の採用\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eふくらはぎサポート\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eテーピングホールド\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e遠赤外線輻射熱\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e吸湿発熱\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e吸湿放湿\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eつま先熱放散\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro02__features__right\"\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e抗菌防臭\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eかかとの包み込み\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e横アーチサポート\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e履きやすさ\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e食い込み軽減\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eメッシュで通気性\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eパイル底で足裏温め\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eなめらかな触感\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eずれ落ち防止\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eつま先ずれ防止\u003c\/p\u003e\n                \u003c\/div\u003e\n              \u003c\/div\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\u003cdiv class=\"tech__slider\"\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_01\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eかかとのフィット感\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_01.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eかかとのフィット感\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eYヒールでしっかりかかとをホールドして着用時の安定感を実現しました。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_02\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e履き口\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_02.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e履き口\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e履きやすさのために絶妙な伸縮性を、内側に滑りにくい糸の使用で着用時のずれにくさを実現しました。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_03\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e足裏\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_03.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e足裏\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e足裏をパイル組織にすることでクッション性を持たせて、部分的に効果的に温めます。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_04\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eふくらはぎ\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_04.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eふくらはぎ\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e段階着圧で血行を促進。テーピングホールドとふくらぎサポートでしっかりふくらぎをメンテナンスします。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_05\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eつま先＆甲\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_05.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eつま先＆甲\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eオープントゥ仕様と甲の通気性UPで、睡眠中の熱放散を実現。そして横アーチサポートで足のずれにくさをサポートします。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\u003c\/div\u003e\n\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e靴下一筋90年の伝統の\u003cbr\u003e国内縫製で作られる安心品質\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_02.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e靴下一筋90年の伝統の\u003cbr\u003e国内縫製で作られる安心品質\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e大阪府松原市の伝統ある工場で、糸、染色、編立て、セット、検品まで一貫生産で行っています。各工程で、職人の手で1着ずつ大切に作られています。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"spec__title\" id=\"scene\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eSCENE\u003c\/span\u003eシーン\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"scene__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"scene__inner\"\u003e\n      \u003cdiv class=\"scene__left\"\u003e\n        \u003cdiv class=\"scene__img01 fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene01_model.webp\" alt=\"\" width=\"1140\" height=\"642\" class=\"u-pc\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene01_model_sp.webp\" alt=\"\" width=\"710\" height=\"400\" class=\"u-sp\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"scene__img03 fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene02_model.webp?2\" alt=\"\" width=\"1208\" height=\"1416\" class=\"u-pc\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene02_model_sp.webp?3\" alt=\"\" width=\"710\" height=\"400\" class=\"u-sp\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"scene__img02 fadeInUpShort animated\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene03_model.webp\" alt=\"\" width=\"1140\" height=\"642\" class=\"u-pc\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene03_model_sp.webp?3\" alt=\"\" width=\"710\" height=\"400\" class=\"u-sp\"\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"spec__title\" id=\"voice\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eMONITOR’S VOICE\u003c\/span\u003eモニターの声\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"voice__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"voice__left fadeInUpShort animated\"\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice01.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e毎晩、脚が浮腫むのですが、夜にこちらを着用すると\u003cspan\u003e何事もなかったように\u003c\/span\u003e戻っています。今までは強い着圧ソックスを使用していたので、このくらいの心地よい程度の着圧で本当に効果あるのかなと思いましたが、抜群に効果がありました!イベントで10時間近く歩き回り、翌日ライブで5時間半立ちっぱなしの日もリセットしてくれました。また、日中デスクワーク中につけていても、\u003cspan\u003e夕方浮腫んでいません!\u003c\/span\u003e 夕方用事がある日などはマストで頼りたいアイテムです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice02.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eこれまで睡眠中は靴下を脱いでいたので、違和感があるのでは？と思いましたが、足先がオープンになっているので\u003cspan\u003e全く気にならず\u003c\/span\u003e朝まで快適に過ごせました。立ち仕事をした晩に履くと、翌朝には何事もなかったかのように足が軽くなっていて驚きました！滑り止めが付いるので、\u003cspan\u003e足首に落ちてこない\u003c\/span\u003eのも嬉しいポイントです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice03.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eきつすぎない着圧で\u003cspan\u003e着脱時も着用中も\u003c\/span\u003e全くストレスが無いです。なのに浮腫みが取れるはもちろん、他の着圧ソックスと比較して\u003cspan\u003e脚の軽さがかなり違う\u003c\/span\u003e気がしました。滑り止めのおかげで就寝～朝までズレ落ちてこずよかったです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"voice__right fadeInUpShort animated\"\u003e\n      \u003cdiv class=\"voice__item u-sp\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice01.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e毎晩、脚が浮腫むのですが、夜にこちらを着用すると\u003cspan\u003e何事もなかったように\u003c\/span\u003e戻っています。今までは強い着圧ソックスを使用していたので、このくらいの心地よい程度の着圧で本当に効果あるのかなと思いましたが、抜群に効果がありました!イベントで10時間近く歩き回り、翌日ライブで5時間半立ちっぱなしの日もリセットしてくれました。また、日中デスクワーク中につけていても、\u003cspan\u003e夕方浮腫んでいません!\u003c\/span\u003e 夕方用事がある日などはマストで頼りたいアイテムです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item u-sp\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice02.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eこれまで睡眠中は靴下を脱いでいたので、違和感があるのでは？と思いましたが、足先がオープンになっているので\u003cspan\u003e全く気にならず\u003c\/span\u003e朝まで快適に過ごせました。立ち仕事をした晩に履くと、翌朝には何事もなかったかのように足が軽くなっていて驚きました！滑り止めが付いるので、\u003cspan\u003e足首に落ちてこない\u003c\/span\u003eのも嬉しいポイントです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item u-sp\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice03.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eきつすぎない着圧で\u003cspan\u003e着脱時も着用中も\u003c\/span\u003e全くストレスが無いです。なのに浮腫みが取れるはもちろん、他の着圧ソックスと比較して\u003cspan\u003e脚の軽さがかなり違う\u003c\/span\u003e気がしました。滑り止めのおかげで就寝～朝までズレ落ちてこずよかったです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice04.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e運動でたくさん歩いた日に使うと、次の日\u003cspan\u003e疲れが軽減された\u003c\/span\u003e実感がありました。締め付け感もちょうどよく、ストレスなく眠れました。滑り止めのおかげなのか、寝相の悪い私でも\u003cspan\u003eずれたりはしていなかった\u003c\/span\u003eです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice05.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eこれまで着圧ソックスは「蒸れる」「締め付けがきつくて寝苦しい」というイメージがあり、使用を避けていましたが、このソックスは\u003cspan\u003e蒸れず、締め付け感もなく快適に眠る\u003c\/span\u003eことができました。普段デスクワークのため足のむくみが気になっていましたが、\u003cspan\u003e翌朝にはスッキリ軽くなっていて\u003c\/span\u003e、とても満足しています。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice06.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e日々のマッサージは欠かせないものでしたがこのソックスを履いて寝ると翌朝の目覚めが良く、\u003cspan\u003e脚の疲れだけでなく全身の疲れがとれる\u003c\/span\u003e感じ。今では毎晩履いており、出張時も必ず持っていきます。締め付けの強度がちょうど良いのが素晴らしい。エアコンをつけて寝るようになってからも\u003cspan\u003e冷え防止\u003c\/span\u003eによいようです。通年、私には必要なアイテムとなっています。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e60代 男性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice07.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e今まで着圧ソックスをはく習慣はなかったのですが、はいてみてビックリです。\u003cspan\u003e足が凄く楽になります\u003c\/span\u003e。特に、趣味のマラソンで過酷に脚を酷使した夜はもう欠かすことが出来ません。\u003cspan\u003e睡眠中にメンテナンス出来る\u003c\/span\u003e事はすごく理にかなっていると思います。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e50代 男性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"spec__title\" id=\"spec\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eSPEC\u003c\/span\u003eスペック\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"spec__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\" id=\"color\"\u003e\n    \u003cdiv class=\"color fadeInUpShort animated\"\u003e\n      \u003cdiv class=\"color__img\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_spec01.webp\" alt=\"\" width=\"662\" height=\"1030\"\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"color__txt\"\u003e\n        \u003cp\u003e■対応サイズガイド\u003c\/p\u003e\n        \u003ctable class=\"spec__table\"\u003e\n          \u003cthead\u003e\n            \u003ctr\u003e\n              \u003cth\u003eサイズ(cm)\u003c\/th\u003e\n              \u003cth\u003e\u003cspan class=\"termina\"\u003eS\u003c\/span\u003e\u003c\/th\u003e\n              \u003cth\u003e\u003cspan class=\"termina\"\u003eM\u003c\/span\u003e\u003c\/th\u003e\n            \u003c\/tr\u003e\n          \u003c\/thead\u003e\n          \u003ctbody\u003e\n            \u003ctr\u003e\n              \u003cth\u003eふくらはぎ\u003c\/th\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e32-38\u003c\/span\u003e\u003c\/td\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e36-42\u003c\/span\u003e\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003cth\u003e足首\u003c\/th\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e19-23\u003c\/span\u003e\u003c\/td\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e21-25\u003c\/span\u003e\u003c\/td\u003e\n            \u003c\/tr\u003e\n          \u003c\/tbody\u003e\n        \u003c\/table\u003e\n        \u003cdiv class=\"size fadeInUpShort animated\"\u003e\n          \u003cp class=\"size__title u-mb-8\"\u003e■特記事項\u003c\/p\u003e\n          \u003cp class=\"size__note\"\u003e\n              【種類及び一般的名称】 機械器具（12） 理学診療用器具  一般医療機器 弾性ストッキング 31724000\u003cbr\u003e【製造販売届出番号】11B1X10025292803\u003cbr\u003e【効能・効果】血行促進、むくみ改善、リンパ液の流れの改善\u003c\/p\u003e\n          \u003cdiv class=\"size__note__detail\"\u003e続きを見る\u003c\/div\u003e\n          \u003cp class=\"size__note size__note__hide\"\u003e【使用方法】\u003cbr\u003e1.レッグ部分を手繰りよせ、かかと位置を合わせるように履く。\u003cbr\u003e2.両手の親指で履き口部分を持ち上げて左右を均等に引き上げる。\u003cbr\u003e3.履き口を正しい位置まで上げれば完成。\u003cbr\u003e【使用上の注意】\u003cbr\u003e次の方は、ご使用前に医師に相談してください。\u003cbr\u003e1．現在、病気やけがによる脚のむくみやだるさを感じる方\u003cbr\u003e2．血圧の高い方、心臓・腎臓などに障害のある方\u003cbr\u003e3．現在、かゆみや発疹をおこしている方\u003cbr\u003e4．血行障害をおこしたことのある方\u003cbr\u003e【取り扱い説明】\u003cbr\u003e1. サイズの合わないものを使用しないでください。（血行が悪くなるおそれがあります。）\u003cbr\u003e2．2枚重ねて使用しないでください。（血行が悪くなるおそれがあります。）\u003cbr\u003e3．ソックスをひざ裏にかかるまで引き上げないでください。（ひざ裏の血行が悪くなるおそれがあります。）\u003cbr\u003e4．使用中、使用後に気分が悪くなったり、かゆみ、発疹、痛みなどの異常を感じた場合は、すぐに使用を中止してください。\n          \u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\n  \u003csection class=\"technology__item technology__item__sub gitf_block\" id=\"tech03_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eギフトにもおすすめ\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_giftwrapping.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eギフトにもおすすめ\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                    高級感のあるポリエステルツイル素材を使用。\n                    ベージュの生地とリボンで統一し、ブレインスリープのロゴを洗練されたサイズ感で配置。\n                    幅広で豪華なリボンが、プレゼントに相応しい上質な高級感を演出します。\n            \u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\n\n  \u003csection class=\"relatedProducts\" id=\"relatedProducts\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eRELATED PRODUCTS\u003c\/span\u003e関連アイテム\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" style=\"padding-bottom: 0;border-bottom: unset;\" id=\"related01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"\"\u003e\n        \u003ch2 class=\"technology__item__title fadeInUpShort animated related__ttl\"\u003e\n          さらに究極のリカバリーを\u003cbr class=\"u-sp\"\u003e追求したい方へ\n        \u003c\/h2\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"padding: 0;height: unset;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_related01.webp\" alt=\"\" width=\"870\" height=\"580\" style=\"height: unset; position: relative;\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content \"\u003e\n            \u003cp class=\"spec__tag\"\u003e一般医療機器\u003c\/p\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eブレインスリープ \u003cbr\u003eウェア リカバリー\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e着て寝るだけでフルリカバリー\u003c\/p\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin-top: 16px;\"\u003e・独自開発メディックリカバリーファイバーで\u003cbr\u003e血行促進し、疲労回復\u003cbr\u003e・快適な睡眠を追求した独自開発の軽量スウェット生地\u003cbr\u003e・洗濯機で丸洗い出来て、さらに制菌と消臭機能で毎日清潔\u003c\/p\u003e\n            \u003ca href=\"https:\/\/brain-sleep.com\/products\/wear_recovery\" class=\"related__btn\" target=\"_blank\"\u003e詳しくはこちら\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" style=\"padding-bottom: 0;border-bottom: unset;\" id=\"related02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"padding: 0;height: unset;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_related02.webp\" alt=\"\" width=\"960\" height=\"440\" style=\"height: unset; position: relative;\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content \"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eブレインスリープ \u003cbr\u003eライトコンフォーター リカバリー\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e遠赤外線テクノロジーで体を温める\u003cbr\u003eリバーシブル毛布\u003c\/p\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin-top: 16px;\"\u003e・メディックリカバリーファイバーで、体を究極に温めて疲労回復へ導く\u003cbr\u003e・ムレ難さ、制菌性の清潔さ。\u003cbr\u003e極上の肌触りで、いつまでも包まっていたい快適さ\u003cbr\u003e・冬向けのカシミヤブラン、秋春向けのコットンブランで、秋冬春の長期間使用できるリバーシブル構造\u003c\/p\u003e\n            \u003ca href=\"https:\/\/brain-sleep.com\/products\/comforter_recovery\" class=\"related__btn\" target=\"_blank\"\u003e詳しくはこちら\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" style=\"border-bottom: unset;\" id=\"related03\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"padding: 0;height: unset;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_related03.webp\" alt=\"\" width=\"666\" height=\"568\" style=\"height: unset; position: relative;\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content \"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eブレインスリープ \u003cbr\u003eハラマキ リカバリー\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eコア温熱×着圧で寝ながら集中ケア\u003c\/p\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin-top: 16px;\"\u003e・メディックリカバリーファイバー採用、遠赤外線輻射熱で腹部を集中温熱\u003cbr\u003e・独自スリープコアコンプレッションで睡眠着圧。\u003cbr\u003e【呼吸コンサルタント大貫崇監修】\u003cbr\u003e・締め付けし過ぎないリラックス設計！ムレ難い着用と抗菌防臭の清潔さ\u003c\/p\u003e\n            \u003ca href=\"https:\/\/brain-sleep.com\/products\/haramaki\" class=\"related__btn\" target=\"_blank\"\u003e詳しくはこちら\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"last animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"last__bg fadeInUpShort animated\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_last_bg_model.webp\" alt=\"\" width=\"2000\" height=\"1122\" class=\"u-pc\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_last_bg_model_sp.webp\" alt=\"\" width=\"750\" height=\"902\" class=\"u-sp\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"last__logo\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_awakenyourpossibility.webp\" alt=\"\" width=\"624\" height=\"318\"\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"last__txt\"\u003e着用するだけで整う、\u003cbr\u003eリカバリーソックス\u003c\/p\u003e\n  \u003c\/section\u003e\n\n\u003c!--   \u003csection class=\"other__title\" id=\"other\"\u003e\n      \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n          \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n              \u003cspan\u003eRECOMMENDED SELECTION\u003c\/span\u003e睡眠の質を高めるオススメ商品\n          \u003c\/h2\u003e\n      \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"other__pillow animatedParent animateOnce\" data-sequence=\"500\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"other__pillow__inner fadeInUpShort animated\"\u003e\n          \u003ch3 class=\"other__pillow__text__sub__title u-sp\"\u003e速く、深く、脳が眠る。\u003cbr\u003e明日のパフォーマンスを目覚めさせる。\u003c\/h3\u003e\n          \u003cdiv class=\"other__pillow__vimeo\"\u003e\u003cvideo class=\"lozad\" width=\"1920\" height=\"1080\" style=\"aspect-ratio:1920\/1080\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/473c0a16e10948f288655ba4c32ab483.mp4\" preload=\"none\" autoplay loop muted playsinline\u003e\u003c\/video\u003e\u003c\/div\u003e\n          \u003cdiv class=\"other__pillow__text\"\u003e\n              \u003cdiv class=\"other__pillow__text__title\"\u003e\n                  \u003ch2 class=\"other__pillow__text__title__logo\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_wear_thermocontrol_other_pillow_logo.webp\" alt=\"BRAIN SLEEP PILLOW\" width=\"200\" height=\"63\"\u003e\u003c\/h2\u003e\n                  \u003cp class=\"other__pillow__text__title__name\"\u003eブレインスリープ ピロー\u003c\/p\u003e\n              \u003c\/div\u003e\n              \u003ch3 class=\"other__pillow__text__sub__title\"\u003e速く、深く、脳が眠る。\u003cbr\u003e明日のパフォーマンスを目覚めさせる。\u003c\/h3\u003e\n              \u003ca href=\"https:\/\/brain-sleep.com\/products\/pillow\" class=\"other__pillow__text__sub__more\"\u003e詳しく見る\u003c\/a\u003e\n          \u003c\/div\u003e\n      \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003cdiv class=\"other__col2\"\u003e\n      \u003csection class=\"other__col2__item animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\" id=\"other__comforterpwex\"\u003e\n          \u003ch3 class=\"other__conforter__text__sub__title u-sp\"\u003e羽毛を超越した\u003cbr\u003e極暖掛け布団\u003c\/h3\u003e\n          \u003cdiv class=\"other__col2__item__comforterpwex__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_comfoter_pwex.webp\" alt=\"\" width=\"503\" height=\"381\"\u003e\u003c\/div\u003e\n          \u003cdiv class=\"other__col2__item__inner fadeInUpShort animated\"\u003e\n              \u003cdiv\u003e\n                  \u003ch2 class=\"other__col2__item__logo other__col2__item__comforterpwex__logo\"\u003e\n                    \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_comfoter_pwex_logo.webp\" alt=\"BRAIN SLEEP COMFORTER PERFECT WARM EX\" width=\"391\" height=\"97\"\u003e\n                  \u003c\/h2\u003e\n                  \u003cp class=\"other__col2__item__logotext\"\u003eブレインスリープ コンフォーター \u003cbr class=\"u-sp\"\u003eパーフェクト ウォーム EX\u003c\/p\u003e\n              \u003c\/div\u003e\n              \u003cdiv class=\"other__col2__item__flex\"\u003e\n                  \u003cp class=\"other__col2__item__flex__desc\"\u003e羽毛を超越した\u003cbr\u003e極暖掛け布団\u003c\/p\u003e\n                  \u003ca href=\"https:\/\/brain-sleep.com\/products\/comforter_perfectwarmex\" class=\"other__more__btn other__more__btn__black\"\u003e詳しく見る\u003c\/a\u003e\n              \u003c\/div\u003e\n          \u003c\/div\u003e\n      \u003c\/section\u003e\n      \u003csection class=\"other__col2__item animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\" id=\"other__mattressprotecterpwex\"\u003e\n          \u003ch3 class=\"other__conforter__text__sub__title u-sp\"\u003e究極に暖かい\u003cbr\u003eプロテクター\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e（ボックスシーツ）\u003c\/span\u003e\u003c\/h3\u003e\n          \u003cdiv class=\"other__col2__item__mattressprotecterpwex__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_mattress_protector_pwex.webp\" alt=\"\" width=\"503\" height=\"381\"\u003e\u003c\/div\u003e\n          \u003cdiv class=\"other__col2__item__inner fadeInUpShort animated\"\u003e\n              \u003cdiv\u003e\n                  \u003ch2 class=\"other__col2__item__logo other__col2__item__mattressprotecterpwex__logo\"\u003e\n                    \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_mattress_protector_pwex_logo.webp\" alt=\"BRAIN SLEEP MATTRESS PROTECTOR PERFECT WARM EX\" width=\"549\" height=\"92\"\u003e\n                    \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_mattress_protector_pwex_logo_sp.webp\" alt=\"\" width=\"549\" height=\"92\"\u003e\n                  \u003c\/h2\u003e\n                  \u003cp class=\"other__col2__item__logotext\"\u003eブレインスリープ マットレス プロテクター パーフェクト ウォーム EX\u003c\/p\u003e\n              \u003c\/div\u003e\n              \u003cdiv class=\"other__col2__item__flex\"\u003e\n                  \u003cp class=\"other__col2__item__flex__desc\"\u003e究極に暖かい\u003cbr\u003eプロテクター\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e（ボックスシーツ）\u003c\/span\u003e\u003c\/p\u003e\n                  \u003ca href=\"https:\/\/brain-sleep.com\/products\/mattressprotector_compact_perfectwarmex\" class=\"other__more__btn other__more__btn__black\"\u003e詳しく見る\u003c\/a\u003e\n              \u003c\/div\u003e\n          \u003c\/div\u003e\n      \u003c\/section\u003e\n  \u003c\/div\u003e --\u003e\n\n  \u003csection id=\"faq\" class=\"faq js-box\"\u003e\n    \u003cdiv class=\"section__title\"\u003e\n      \u003ch2 class=\"section__title__text\"\u003e\n      \u003cspan\u003eFAQ\u003c\/span\u003eよくあるご質問\u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"faq__main\"\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e医療機器ですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003eはい、一般医療機器弾性ストッキングとして届け出しています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e段階着圧ソックスとは何ですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e足首にもっとも強い圧力がかかり、ふくらはぎや太ももへかけて圧力が段階的に弱くなるように設計されたソックスの事をいいます。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e着圧のhPa(ヘクトパスカル)とは何ですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003ehPa(ヘクトパスカル)は、圧力を示す国際単位です。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e就寝時に着用して眠ってもよいですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e睡眠用に設計されていますので、就寝時に着用できます。窮屈にならない程度の弱めな着圧設計です。また、睡眠中に熱放散をすることが出来る設計になっています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e日中の活動時も使用できますか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e日中の使用は可能ですが、睡眠用の弱めな着圧設計やオープントゥ（つま先無しタイプ）など睡眠用の設計になっています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e折り返して着用してもよいですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e上のほうを折り曲げたりすると、その部分が二重、三重になってしまい余計にその部分が強くしめつけられることになりますので、折り返して使用しないでください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003eサイズはどう選べばよいですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003eSとMの２サイズをご用意しております。ページ上の対応サイズガイドを参考にご自分のサイズをお選びください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e洗濯できますか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003eはい、家庭洗濯機で洗濯可能です。白・淡色製品と分けて洗濯ネットに入れて洗濯してください。また、漂白剤（塩素系・酸素系）の使用はお避けください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003eタンブル乾燥はできますか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e生地の伸縮をなくしますので、タンブル乾燥やアイロン等での強制乾燥はお避けください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e産地はどこですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e日本国内の歴史のある靴下専門工場で生産しています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\u003c\/div\u003e\n\n\u003clink rel=\"stylesheet\" media=\"print\" onload=\"this.media='all'\" href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_all_v1.css?06\"\u003e\n\n\u003cscript defer src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_all_v1.js\"\u003e\u003c\/script\u003e\n\n\u003cstyle\u003e\n  .spec__item__desc__text__content__title,\n  .technology__link__lists__title,\n  .technology__item__desc__text__content__title {\n    font-family: \"游ゴシック体\",YuGothic,\"Yu Gothic M\",\"游ゴシック Medium\",\"Yu Gothic Medium\",\"Yu Gothic Pr6N M\",sans-serif;\n    visibility: visible!important;\n  }\n\u003c\/style\u003e\n\u003cscript type=\"text\/javascript\" src=\"https:\/\/cdn.jsdelivr.net\/npm\/lozad\/dist\/lozad.min.js\"\u003e\u003c\/script\u003e\n\u003cscript\u003e\ndocument.addEventListener('DOMContentLoaded', function() {\n  const observer = lozad(); \/\/ すべての [data-src] 要素を対象\n  observer.observe();\n});\n\u003c\/script\u003e\n","brand":"株式会社ブレインスリープ","offers":[{"title":"S","offer_id":47566089126110,"sku":"W0016A1-SMBK","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"M","offer_id":47127990599902,"sku":"W0016A1-MEBK","price":7700.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/thumbnail_socks_recovery_01.webp?v=1759730956"},{"product_id":"egift_haramaki","title":"【eギフト】ブレインスリープ ハラマキ リカバリー","description":"\u003clink rel=\"stylesheet\" href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_all_v2_d256bfde-d136-471e-8368-f728a7e79049.css?v=1754290408\"\u003e\n\u003cstyle\u003e\n    .rwlp__header__wrapper {\n        background: #a0c0db;\n        height: auto;\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 9;\n    }\n\n    @media screen and (min-width: 750px) {\n        .rwlp__header__wrapper {\n            padding: 0 30px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__wrapper {\n            padding: 0 20px;\n        }\n    }\n\n    .rwlp__header {\n        display: flex;\n        align-items: center;\n        justify-content: space-between;\n    }\n\n    @media screen and (min-width: 1200px) {\n        .rwlp__header {\n            height: 90px;\n        }\n    }\n\n    @media screen and (max-width: 1199px) {\n        .rwlp__header {\n            height: 65px;\n        }\n    }\n\n    @media screen and (min-width: 750px) {\n        .rwlp__header__logo {\n            width: 85px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__logo {\n            width: 70px;\n        }\n    }\n\n    @media screen and (min-width: 750px) {\n        .rwlp__header__menu__wrapper {\n            margin: 0 30px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__menu__wrapper {\n            \/* margin: 0 20px; *\/\n        }\n    }\n\n    .rwlp__header__menu__item {\n        display: inline-block;\n    }\n\n    @media screen and (min-width: 1200px) {\n        .rwlp__header__menu__item+.rwlp__header__menu__item {\n            margin-left: 35px;\n        }\n    }\n\n    @media screen and (min-width: 750px) and (max-width: 1199px) {\n        .rwlp__header__menu__item+.rwlp__header__menu__item {\n            margin-left: 30px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__menu__item+.rwlp__header__menu__item {\n            margin-left: 15px;\n        }\n    }\n\n    @media screen and (max-width: 749px) {\n        .rwlp__header__menu__item.rwlp__hidden__sm {\n            display: none;\n        }\n    }\n\n    @media screen and (min-width: 1200px) {\n        .rwlp__header__menu__link {\n            font-size: 14px;\n        }\n    }\n\n    @media screen and (max-width: 1199px) {\n        .rwlp__header__menu__link {\n            font-size: 14px;\n        }\n    }\n\n    .rwlp__header__wrapper.fixed {\n        position: fixed;\n        top: -90px;\n        transition: unset;\n    }\n\n    .rwlp__header__wrapper.animate {\n        transition: top 0.15s ease-out;\n        top: 0;\n    }\n\n    .rwlp__header__wrapper.hide {\n        top: -90px;\n    }\n\n    .kv {\n        \/*border-top: 55px solid #fff;*\/\n    }\n\n    .rwlp__wrapper,\n    #MainContent,\n    html.js {\n        overflow: unset;\n    }\n\n    @media screen and (max-width:749px) {\n\n        .rwlp__wrapper,\n        #MainContent,\n        html.js {\n            overflow: unset !important;\n        }\n    }\n\n    .rwlp__wrapper div:empty {\n        display: initial;\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    .rte.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {\n        transform: unset;\n        animation: unset;\n        opacity: 1;\n    }\n\n    .rwlp__wrapper a:empty,\n    .rwlp__wrapper div:empty {\n        display: initial;\n    }\n\n    .rwlp__wrapper video {\n        height: auto;\n        width: 100%;\n    }\n\n    .rwlp__wrapper a {\n        text-decoration: unset;\n        color: #000;\n    }\n\n    .rwlp__wrapper ul {\n        list-style: none;\n    }\n\n    .technology__link__lists {\n        padding: 0;\n    }\n\n    .rwlp__wrapper img {\n        width: 100%;\n        height: auto;\n        max-width: 100%;\n        border: unset;\n        margin-bottom: 0;\n    }\n\n    .faq__item img {\n        width: auto;\n        max-width: 100%;\n    }\n\n    .animated {\n        -webkit-animation-duration: 1s;\n        animation-duration: 1s;\n        -webkit-animation-fill-mode: both;\n        animation-fill-mode: both\n    }\n\n    .fadeInUpShort {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px)\n    }\n\n    \/* margin padding 調整*\/\n    .sleep__info__quality__golden__title {\n        margin: 0\n    }\n\n    #cover.spec__item .spec__item__desc__text__content__title {\n        margin-top: 0;\n    }\n\n    .kv img,\n    .intro05__img img,\n    .last img,\n    .spec__slider__thumb img,\n    .spec__quality__img img,\n    .intro02__thermo img,\n    .technology__item__desc__img img,\n    .line__bnr img,\n    .technology__link__lists__title {\n        margin-bottom: 0;\n    }\n\n    .rwlp__wrapper ul,\n    .technology__link__lists {\n        padding: 0 !important\n    }\n\n    .termina {\n        font-family: Termina, \"游ゴシック体\", YuGothic, \"Yu Gothic M\", \"游ゴシック Medium\", \"Yu Gothic Medium\", \"Yu Gothic Pr6N M\", sans-serif !important;\n        font-weight: 400\n    }\n\n    body,\n    details,\n    div,\n    fieldset,\n    form,\n    h1,\n    h2,\n    header,\n    html,\n    iframe,\n    img,\n    label,\n    legend,\n    li,\n    nav,\n    p,\n    section,\n    small,\n    span,\n    summary,\n    ul {\n        margin: 0;\n        padding: 0;\n        border: 0;\n        outline: 0;\n        vertical-align: baseline;\n        background: 0 0\n    }\n\n    button,\n    input,\n    select {\n        appearance: none\n    }\n\n    .fadeInUpShort {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px)\n    }\n\n    body {\n        overflow-x: hidden\n    }\n\n    h1,\n    h2 {\n        font-weight: 400 !important\n    }\n\n    .technology__item__desc__img {\n        position: relative;\n        width: 58.1428571428571vw;\n        flex: 1\n    }\n\n    .technology__item__desc__img img {\n        width: 100%;\n        height: auto\n    }\n\n    @media screen and (max-width:749px) {\n        .technology__item__desc__img {\n            margin-left: auto;\n            width: calc(100% - 20px)\n        }\n\n        .technology__item__desc__img img {\n            height: 100%\n        }\n    }\n\n    .u-sp {\n        display: none !important\n    }\n\n    @media screen and (max-width:767px) {\n        .u-sp {\n            display: block !important\n        }\n    }\n\n    img {\n        vertical-align: bottom\n    }\n\n    .intro02__img {\n        width: 435px;\n        position: absolute;\n        top: 100px;\n        left: 50.4%\n    }\n\n    .intro02__txt4 {\n        text-align: center;\n        font-size: 45px;\n        font-family: \"Yu Gothic Pr6N D\", \"游ゴシック体\", YuGothic, sans-serif\n    }\n\n    .tech02__wrap1__img {\n        width: 714px;\n        flex-shrink: 0\n    }\n\n    @media screen and (max-width:767px) {\n        .intro02__arrow {\n            width: 20px;\n            margin: 0 auto 24px\n        }\n\n        .intro02__wrap2__ttl {\n            width: 186px;\n            height: 32px;\n            display: flex !important;\n            align-items: center;\n            justify-content: center;\n            font-size: 18px;\n            margin: 0 auto 20px;\n            border: 1px solid #fff\n        }\n\n        .intro02__img {\n            position: relative;\n            left: 0;\n            top: 0;\n            max-width: 100%;\n            width: 450px;\n            padding-left: 65px;\n            margin: -16px auto -90px\n        }\n\n        .intro02__img img {\n            position: relative;\n            top: 0;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 385px;\n            max-width: unset\n        }\n\n        .intro02__txt4 {\n            font-size: 25px;\n            line-height: 1.5\n        }\n\n        .intro03__txt4 {\n            text-align: left;\n            font-size: 4.2666vw;\n            font-feature-settings: \"palt\";\n            line-height: 2;\n            color: #fff;\n            padding: 50px 20px\n        }\n\n        .tech02__wrap1__img {\n            width: 100%\n        }\n    }\n\n\n    .u-pc {\n        display: block !important\n    }\n\n    .u-sp {\n        display: none !important\n    }\n\n    @media screen and (max-width:767px) {\n        .u-pc {\n            display: none !important\n        }\n\n        .u-sp {\n            display: block !important\n        }\n    }\n\n\n    \/* giftブロック調整用 *\/\n    .gitf_block {\n        border-top: 1px #000 solid !important;\n        padding-top: 100px;\n        margin-top: 0px;\n    }\n\n    @media screen and (max-width:767px) {\n        .gitf_block {\n            padding-top: 50px;\n        }\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"rwlp__wrapper\"\u003e\n    \u003cheader style=\"display: none;\" class=\"rwlp__header__wrapper\"\u003e\n        \u003cdiv class=\"\"\u003e\n            \u003cheader class=\"rwlp__header\"\u003e\u003ca href=\"#\" class=\"rwlp__header__logo\"\u003e \u003cimg height=\"40\" width=\"85\" alt=\"ロゴ：Brain Sleep\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_adpage_logo.webp\"\u003e \u003c\/a\u003e\n                \u003cnav class=\"rwlp__header__menu__wrapper\"\u003e\n                    \u003cul class=\"rwlp__header__menu\"\u003e\n                        \u003cli class=\"rwlp__header__menu__item\"\u003e\u003ca href=\"#technology\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eテクノロジー\u003c\/a\u003e\u003c\/li\u003e\n                        \u003cli class=\"rwlp__header__menu__item\"\u003e\u003ca href=\"#spec\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003e仕様\u003c\/a\u003e\u003c\/li\u003e\n                        \u003cli class=\"rwlp__header__menu__item\"\u003e\u003ca href=\"#faq\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eFAQ\u003c\/a\u003e\u003c\/li\u003e\n                    \u003c\/ul\u003e\n                \u003c\/nav\u003e\n            \u003c\/header\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n    \u003csection class=\"kv\"\u003e\n        \u003cdiv class=\"kv__bg\"\u003e\n            \u003cimg class=\"u-pc\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_bg_model_v2.webp?2\" width=\"1998\" height=\"1190\" alt=\"\"\u003e \u003cimg class=\"u-sp\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_bg_model_sp_v2.webp?2\" width=\"748\" height=\"1078\" alt=\"\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"kv__inner\"\u003e\n            \u003ch1 class=\"kv__txt\"\u003eあらゆる冷えから守る\u003cbr\u003eリカバリーハラマキ\u003c\/h1\u003e\n            \u003cdiv class=\"kv__list\"\u003e\n                \u003cp class=\"kv__list__item\"\u003e温熱\u003c\/p\u003e\n                \u003cp class=\"kv__list__item\"\u003e睡眠着圧\u003c\/p\u003e\n                \u003cp class=\"kv__list__item\"\u003e抗菌防臭\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"kv__logo\"\u003e\n                \u003cimg class=\"u-pc\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_logo.webp\" width=\"662\" height=\"228\" alt=\"BRAINSLEEP HARAMAKI RECOVERY\"\u003e \u003cimg class=\"u-sp\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_kv_logo_sp_v2.webp\" width=\"605\" height=\"73\" alt=\"\"\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro01 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro01__inner\"\u003e\n            \u003cp class=\"intro01__txt2 fadeInUpShort animated\"\u003eブレインスリープから\u003c\/p\u003e\n            \u003cp class=\"intro01__txt3 fadeInUpShort animated\"\u003e\u003cspan\u003eリカバリーハラマキ\u003c\/span\u003eが\u003cbr\u003e新登場！\u003c\/p\u003e\n            \u003cp class=\"intro01__txt1 fadeInUpShort animated\"\u003e体の\u003cspan\u003eコア領域\u003c\/span\u003eを集中ケアして\u003cbr\u003e冷えから腹部を守る\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro02 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro02__inner\"\u003e\n            \u003cdiv class=\"intro02__wrap fadeInUpShort animated\"\u003e\n                \u003cp class=\"intro02__txt1\"\u003eMakuakeで応援購入\u003c\/p\u003e\n                \u003cp class=\"intro02__txt2\"\u003e約\u003cspan class=\"termina\"\u003e¥40,000,000\u003c\/span\u003e達成\u003c\/p\u003e\n                \u003cp class=\"intro02__txt3\"\u003eしたブレインスリープ リカバリー シリーズから\u003cbr\u003e\u003cspan\u003eハラマキモデル\u003c\/span\u003eがついに登場！\u003c\/p\u003e\n                \u003cdiv class=\"intro02__bnr\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_bnr.webp\" alt=\"\" width=\"948\" height=\"376\"\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro02__arrow fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro02_arrow.webp\" alt=\"\" width=\"42\" height=\"108\"\u003e\u003c\/div\u003e\n            \u003cdiv class=\"intro02__img fadeInUpShort animated u-pc\"\u003e\u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro02_img_v2.webp\" alt=\"\" width=\"938\" height=\"984\"\u003e\u003c\/div\u003e\n            \u003cp class=\"intro02__wrap2__ttl fadeInUpShort animated u-sp\"\u003e\u003cspan class=\"termina\"\u003eW\u003c\/span\u003eテクノロジー搭載\u003c\/p\u003e\n            \u003cdiv class=\"intro02__wrap2 fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"intro02__txtwrap\"\u003e\n                    \u003cp class=\"intro02__txtwrap__txt1\"\u003e温熱\u003c\/p\u003e\n                    \u003cp class=\"intro02__txtwrap__txt2\"\u003eメディック\u003cbr\u003eリカバリーファイバー\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro02__cross\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_cross.webp\" alt=\"\" width=\"84\" height=\"84\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"intro02__txtwrap\"\u003e\n                    \u003cp class=\"intro02__txtwrap__txt1\"\u003e睡眠着圧\u003c\/p\u003e\n                    \u003cp class=\"intro02__txtwrap__txt2\"\u003e呼吸コンサルタント\u003cbr class=\"u-pc\"\u003e監修\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro02__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro02_img_sp_v2.webp\" alt=\"\" width=\"770\" height=\"814\"\u003e\u003c\/div\u003e\n            \u003cp class=\"intro02__txt4 u-pc fadeInUpShort animated\"\u003e\u003cspan class=\"termina\"\u003eW\u003c\/span\u003eテクノロジーで、冷えがちな腹部を\u003cspan class=\"bg\"\u003e集中サポート\u003c\/span\u003e\u003c\/p\u003e\n            \u003cp class=\"intro02__txt4 u-sp fadeInUpShort animated\"\u003e冷えがちな腹部を\u003cbr\u003e集中サポート\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro03 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro03__inner\"\u003e\n            \u003cdiv class=\"intro03__txt\"\u003e\n                \u003cp class=\"intro03__txt1 fadeInUpShort animated\"\u003e独自開発の\u003cbr class=\"u-pc\"\u003eリカバリー素材\u003c\/p\u003e\n                \u003cp class=\"intro03__txt2 fadeInUpShort animated termina\"\u003eMEDIC \u003cbr class=\"u-pc\"\u003eRECOVERY\u003cbr\u003eFIBER\u003c\/p\u003e\n                \u003cp class=\"intro03__txt3 fadeInUpShort animated u-pc\"\u003e\n                    地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro03__img\"\u003e\u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080;\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\u003c\/div\u003e\n            \u003cp class=\"intro03__txt4 fadeInUpShort animated u-sp\"\u003e\n                地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro04 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro04__inner\"\u003e\n            \u003cdiv class=\"intro04__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro04_img.webp\" alt=\"\" width=\"1174\" height=\"528\" class=\"fadeInUpShort animated\"\u003e\u003c\/div\u003e\n            \u003cp class=\"intro04__txt fadeInUpShort animated\"\u003e1年を通して、体は冷えるもの・・・\u003cbr\u003eその中でも、\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e様々な原因で体が冷える\u003cbr class=\"u-sp\"\u003e夏\u003c\/span\u003eは\u003cbr class=\"u-pc\"\u003eとても深刻。\u003c\/p\u003e\n            \u003cdiv class=\"intro04__season fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"intro04__season__item\"\u003e\n                    \u003cdiv class=\"intro04__season__item__content\"\u003e\n                        \u003cp class=\"intro04__season__item__ttl\"\u003e夏\u003c\/p\u003e\n                        \u003cdiv class=\"intro04__season__item__check\"\u003e\n                            \u003cp\u003eオフィスなどの屋内と屋外の寒暖差\u003c\/p\u003e\n                            \u003cp\u003e睡眠中のエアコンからの冷気\u003c\/p\u003e\n                            \u003cp\u003e睡眠中に布団を掛けない\u003c\/p\u003e\n                            \u003cp\u003e冷たいものの採り過ぎ\u003c\/p\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"intro04__season__item__img\"\u003e\n                        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro04_img2_model.webp\" alt=\"\" width=\"692\" height=\"420\" class=\"u-pc\"\u003e \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_intro04_img2_model_sp_v2.webp\" alt=\"\" width=\"516\" height=\"310\" class=\"u-sp\"\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro04__season__item\"\u003e\n                    \u003cp class=\"intro04__season__item__ttl\"\u003e春・秋\u003c\/p\u003e\n                    \u003cdiv class=\"intro04__season__item__check\"\u003e\n                        \u003cp\u003e季節の変わり目\u003cbr class=\"u-pc\"\u003eによる温度差\u003c\/p\u003e\n                        \u003cp\u003e昼夜の寒暖差\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro04__season__item\"\u003e\n                    \u003cp class=\"intro04__season__item__ttl\"\u003e冬\u003c\/p\u003e\n                    \u003cdiv class=\"intro04__season__item__check\"\u003e\n                        \u003cp\u003e冬の気温低下\u003c\/p\u003e\n                        \u003cp\u003e屋内外の寒暖差\u003c\/p\u003e\n                        \u003cp\u003e運動不足\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"intro05 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"intro05__inner\"\u003e\n            \u003cp class=\"intro05__txt fadeInUpShort animated\"\u003e睡眠環境の質を高める\u003cbr\u003eニューノーマル ハラマキ\u003c\/p\u003e\n            \u003cdiv class=\"intro05__logo fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_product_logo.webp\" alt=\"BRAINSLEEP HARAMAKI RECOVERY\" width=\"468\" height=\"162\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology\" id=\"technology\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eTECHNOLOGY\u003c\/span\u003eテクノロジー\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__link\"\u003e\n            \u003cul class=\"technology__link__lists animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cli class=\"item fadeInUpShort animated\"\u003e\u003ca class=\"custom-smooth-scroll\" href=\"#tech01\"\u003e\n                        \u003cdiv class=\"technology__link__lists__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_nav01.webp\" alt=\"\" width=\"782\" height=\"722\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__link__lists__title\"\u003e\n                            \u003cspan\u003e01\u003c\/span\u003e遠赤外線輻射熱で、\u003cbr\u003e腹部を集中温熱ケア\n                        \u003c\/h3\u003e\n                    \u003c\/a\u003e\u003c\/li\u003e\n                \u003cli class=\"item fadeInUpShort animated\"\u003e\u003ca class=\"custom-smooth-scroll\" href=\"#tech02\"\u003e\n                        \u003cdiv class=\"technology__link__lists__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_nav02_model.webp\" alt=\"\" width=\"782\" height=\"722\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__link__lists__title\"\u003e\n                            \u003cspan\u003e02\u003c\/span\u003e呼吸の専門家監修\u003cbr\u003e睡眠着圧サポート\n                        \u003c\/h3\u003e\n                    \u003c\/a\u003e\u003c\/li\u003e\n                \u003cli class=\"item fadeInUpShort animated\"\u003e\u003ca class=\"custom-smooth-scroll\" href=\"#tech03\"\u003e\n                        \u003cdiv class=\"technology__link__lists__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_nav03_model.webp\" alt=\"\" width=\"782\" height=\"722\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__link__lists__title no03\"\u003e\n                            \u003cspan\u003e03\u003c\/span\u003eリラックスできる\u003cbr\u003e快適さと清潔さ\n                        \u003c\/h3\u003e\n                    \u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item\" id=\"tech01\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_main_v2.webp\" alt=\"\" width=\"1626\" height=\"920\" class=\"u-pc\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n                            \u003cspan\u003e01\u003c\/span\u003eGENTLE WARM\n                        \u003c\/h2\u003e\n                        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_main_sp_v2.webp\" alt=\"\" width=\"700\" height=\"700\" class=\"u-sp\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e腹部を\u003cbr class=\"u-pc\"\u003e集中温熱ケア\u003c\/h3\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_01\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_01.webp\" alt=\"\" width=\"1626\" height=\"920\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e独自開発新素材\u003cbr\u003eMEDIC RECOVERY FIBER\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                            ナノレベルの厳選したセラミックスを数種類ブレンドしました。独自加工で、高濃度のセラミックスの練り込みに成功。さらに、特殊な糸形状により高い遠赤外線輻射熱効果を実現しました。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_02\"\u003e\n        \u003cdiv class=\"technology__item__inner\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080;\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003eMEDIC RECOVERY FIBER\u003cbr\u003eによる遠赤外線輻射熱\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                            リカバリーを目指して、一から糸と生地を開発。体の体温を効果的に吸収し、遠赤外線として体へ輻射するテクノロジー。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_03\" style=\"margin-bottom: 0;\"\u003e\n        \u003cdiv class=\"technology__item__inner\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_03_model.webp\" alt=\"\" width=\"1628\" height=\"914\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e体のコアである腹部を\u003cbr\u003e集中温熱\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                            お腹や骨盤周りには多くの臓器が集中していて、お腹を温めると内臓の働きが活性化。腹巻きは、日中に冷えたお腹を寝ながら温め、睡眠中のエアコンの冷たい冷気からもお腹を守るのに効果的。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_04\" style=\"margin-top: 24px;\"\u003e\n        \u003cdiv class=\"technology__item__inner\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n                    \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech01_04_model.webp\" alt=\"\" width=\"1628\" height=\"914\"\u003e\n                    \u003cp style=\"margin-top: 8px;\"\u003e▲本製品使用後のサーモグラフィ\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated u-pc\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\u003cbr\u003e\u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item\" id=\"tech02\" style=\"overflow: hidden;\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_main_model_v2.webp\" alt=\"\" width=\"1626\" height=\"920\" class=\"u-pc\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n                            \u003cspan\u003e02\u003c\/span\u003eSLEEP \u003cbr class=\"u-sp\"\u003eCORE\u003cbr\u003eCOMPRESSION\n                        \u003c\/h2\u003e\n                        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_main_model_sp_v2.webp\" alt=\"\" width=\"700\" height=\"700\" class=\"u-sp\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e睡眠着圧サポート\u003c\/h3\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_01\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\" style=\"margin-top: 0;\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cbr\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\" style=\"width: 100%; margin-right: 0; margin-top: 0;\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\" style=\"margin-bottom: 16px;\"\u003e\n                            睡眠中に、呼吸もメンテナンス\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin: 0;\"\u003e睡眠用着圧\u003cbr class=\"u-sp\"\u003e\u003cspan class=\"technology__item__desc__text__content__desc__frame\"\u003eスリープコアコンプレッション\u003c\/span\u003eで\u003cbr class=\"u-sp\"\u003e体のコア領域をサポート！\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"tech02__wrap1 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"tech02__wrap1__content fadeInUpShort animated\"\u003e\n            \u003cp class=\"tech02__wrap1__content__tag\"\u003e呼吸の専門家監修\u003c\/p\u003e\n            \u003cp class=\"tech02__wrap1__content__ttl\"\u003e\u003cspan\u003e独自開発の睡眠用着圧\u003c\/span\u003e\u003cbr\u003eスリープコアコンプレッション\u003c\/p\u003e\n            \u003cdiv class=\"tech02__wrap1__img u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img01_sp.webp\" alt=\"\" width=\"676\" height=\"676\"\u003e\u003c\/div\u003e\n            \u003cp class=\"tech02__wrap1__content__point\"\u003e監修ポイント\u003c\/p\u003e\n            \u003cp class=\"tech02__wrap1__content__point__txt\"\u003e\n                横隔膜付近に適度な着圧をかけることで、肋骨が下がることをサポート。お腹周りの筋肉にも刺激が加わり、さらに肋骨が下がる仕掛けです。その結果、横隔膜がリラックスできて息が吐きやすくなります。また、全身のリラックス、睡眠環境の質を高めたり、脳を休めたり、体全体のメンテナンスを促すことも期待できます。\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tech02__wrap1__img u-pc\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img01.webp\" alt=\"\" width=\"1428\" height=\"804\"\u003e\u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"tech02__wrap2 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"tech02__wrap2__content fadeInUpShort animated\"\u003e\n            \u003cdiv class=\"tech02__wrap2__trainer\"\u003e\n                \u003cdiv class=\"tech02__wrap2__trainer__head\"\u003e\n                    \u003cdiv class=\"tech02__wrap2__trainer__head__txt\"\u003e\n                        \u003cp class=\"tech02__wrap2__trainer__head__title1\"\u003e呼吸コンサルタント\u003cbr\u003eアスレティックトレーナー\u003c\/p\u003e\n                        \u003cp class=\"tech02__wrap2__trainer__head__name\"\u003e大貫 崇\u003c\/p\u003e\n                        \u003cp class=\"tech02__wrap2__trainer__head__title2\"\u003e（株）BP\u0026amp;CO.代表\u003cbr\u003e呼吸コンサルタント\u003c\/p\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"tech02__wrap2__trainer__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img03.webp\" alt=\"\" width=\"248\" height=\"232\"\u003e\u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cp class=\"tech02__wrap2__trainer__intro\"\u003e大阪大学大学院医学系研究科特任研究員を務め、企業との研究や新規事業開発などを行う。京都にて「呼吸専門サロン\n                    ぶりーずぷりーず」を運営。著書に「きほんの呼吸」など\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"tech02__wrap2__howtouse__pc\"\u003e\n                \u003cp class=\"tech02__wrap2__howtouse__ttl\"\u003e着用方法\u003c\/p\u003e\n                \u003cp class=\"tech02__wrap2__howtouse__txt\"\u003e腹巻の上部部分を胸下の肋骨部分に合わせて、腹部まで覆って着用してください。\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tech02__wrap2__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech02_img02.webp\" alt=\"\" width=\"678\" height=\"678\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"tech02__wrap2__howtouse__sp\"\u003e\n            \u003cp class=\"tech02__wrap2__howtouse__ttl\"\u003e着用方法\u003c\/p\u003e\n            \u003cp class=\"tech02__wrap2__howtouse__txt\"\u003e腹巻の上部部分を胸下の肋骨部分に合わせて、腹部まで覆って着用してください。\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item\" id=\"tech03\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_main_model_v2.webp\" alt=\"\" width=\"1626\" height=\"920\" class=\"u-pc\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n                            \u003cspan\u003e03\u003c\/span\u003eCOMFORT \u003cbr\u003e\u0026amp; CLEAN\n                        \u003c\/h2\u003e\n                        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_main_model_sp_v2.webp\" alt=\"\" width=\"700\" height=\"700\" class=\"u-sp\"\u003e\u003c\/div\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e\n                            毎日身に付けたくなる\u003cbr\u003e快適性と清潔性\u003c\/h3\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01\" style=\"margin-bottom: 0;\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/90028aef19444b539ce30ca600e57cfc.mp4\" style=\"aspect-ratio: 1920\/1080;\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e締め付け過ぎない、\u003cbr\u003e高いストレッチ性\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e高いストレッチ性素材で、快適なフィット感が抜群。インナー感覚で着用可能です。\n                        \u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_02\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_02_v2.webp\" alt=\"\" width=\"1628\" height=\"916\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e着用中の嫌なムレ感を解消\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e吸湿放湿性の高い素材を採用することで、着用時のムレ感を解消して、快適さを実現\n                        \u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_03\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_tech03_03_v2.webp\" alt=\"\" width=\"1628\" height=\"916\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003e抗菌防臭加工で清潔\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e家庭洗濯はもちろん、抗菌防臭機能で嫌な臭いのもとの菌の増殖を防ぎます。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"spec__title\" id=\"voice\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eMONITOR’S VOICE\u003c\/span\u003eモニターの声\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"voice__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"voice__left\"\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user01.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        \u003cspan\u003e温度感が絶妙\u003c\/span\u003e！安心の腹巻き\u003cbr\u003eこの腹巻きは、使い始めてすぐに「これはいいかも」と感じました。特に気に入ったのは、温度感がちょうどよく、\u003cspan\u003e暑すぎず寒すぎず、心地よいぬくもりが続く\u003c\/span\u003eところ。おかげで、寝ている間も快適で、なんとなく熟睡できたような気がします。朝起きたときのスッキリ感が違いました。温度感がちょうどよくて、結構すきです。\u003cbr\u003e\u003cspan\u003e締め付け感がほとんどないので、リラックスして眠れるのも大きな魅力\u003c\/span\u003eです。長さと厚みがしっかりあるので、お腹全体を包み込んでくれる安心感があり、\u003cspan\u003e冷えが気になる夜も安心して使えます\u003c\/span\u003e。生地も丈夫で高級感があり、長く愛用できそうです。\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 男性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user02.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        普段ハラマキは使用しませんでしたが、お腹が温まるからか\u003cspan\u003e普段より朝のトイレの回数が激減\u003c\/span\u003e。普段は大体お腹が痛くて4~5回行くのですがこのハラマキをつけた数日は0~1回程度で、お腹のつらさがありませんでした。着圧具合は丁度良い感じでした。しっかりと温まりますが、\u003cspan\u003e薄手なので日中も睡眠中も常時つけていても違和感がなく丁度いい\u003c\/span\u003eです。\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 男性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__right\"\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user03.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        \u003cspan\u003eストレスフリーな心地よい着圧\u003c\/span\u003eで着心地がよかったので、睡眠時だけでなく日中も着用したいなと思いました。また、着用部分がポカポカと温かさが維持されるため、\u003cspan\u003e冷え対策にもつながり嬉しい\u003c\/span\u003eです。\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"voice__item fadeInUpShort animated\"\u003e\n                \u003cdiv class=\"voice__item__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_user04.webp\" alt=\"\" width=\"144\" height=\"144\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"voice__item__content\"\u003e\n                    \u003cp class=\"voice__item__content__txt\"\u003e\n                        \u003cspan\u003eお腹が弱い夫\u003c\/span\u003eにプレゼント。\u003cspan\u003e超痩せ型なのですが、問題なく着用できており\u003c\/span\u003e、お腹がじわじわ温かくなるものの、ムレ感が気になったり、\u003cspan\u003e暑すぎるということがない絶妙な温度感\u003c\/span\u003eのよう。日頃トイレにこもる時間が長く、生活の中で「夫がトイレから出てくるの待ち」という時間が少なからず発生していたのですが、それがかなり減って私にも恩恵がありました!\n                    \u003c\/p\u003e\n                    \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"spec__title\" id=\"story\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eDEVELOPMENT STORY\u003c\/span\u003e開発秘話\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003cp class=\"story animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        遠赤外線輻射熱機能のメディックリカバリーファイバーを採用したハラマキです。\u003cbr\u003e腹巻きというと寒いシーズンのイメージが強いと思います。しかし、今回は夏の体をメンテナンスして頂くご提案です。近年の夏は、極端な高温でありながらその期間が長期化しています。その期間は、エアコンからの冷気や気候や屋内外の寒暖差、冷たいものの採り過ぎなど様々な体を冷やす要因が存在します。特に、お腹の冷えは皆さんが抱える悩みだと考えています。睡眠時間を利用して、お腹を温めることをご提案しております。\u003cbr\u003eそれに加えて、アスレティックトレーナーでありながら呼吸コンサルタントの大貫崇さんに監修して頂き、スリープコアコンプレッション（睡眠用着圧）を開発しました。寝ている間にメンテナンスできるハラマキ、この機会に毎日のルーティンに取り入れていただければ幸いです。\u003cbr\u003e開発者：町田\n        貴裕\u003c\/p\u003e\n    \u003csection class=\"spec__title\" id=\"spec\"\u003e\n        \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n                \u003cspan\u003eSPEC\u003c\/span\u003e仕様\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub\" id=\"size\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_spec.webp\" alt=\"\" width=\"914\" height=\"724\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e生産国：日本\u003cbr\u003e\u003cspan style=\"padding-left: 3.9em; text-indent: -3.9em; display: inline-block;\"\u003eサイズ：Mサイズ\n                                約27×30（㎝） \/ \u003cbr class=\"u-sp\"\u003eLサイズ 約27×35（㎝）\u003c\/span\u003e\u003cbr\u003e\u003cspan style=\"padding-left: 3em; text-indent: -3em; display: inline-block;\"\u003e素材：ポリエステル52％\n                                ナイロン44％ ポリウレタン4％\u003c\/span\u003e\u003cbr\u003e\u003cbr\u003e■対応サイズガイド（ユニセックス）\u003c\/p\u003e\n                        \u003cimg class=\"sizetable\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_size.webp\" alt=\"\" width=\"660\" height=\"158\"\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"technology__item technology__item__sub gitf_block\" id=\"tech03_02\"\u003e\n        \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n            \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n                \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_giftwrapping.webp\" alt=\"\" width=\"1628\" height=\"916\"\u003e\u003c\/div\u003e\n                \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n                    \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n                        \u003ch3 class=\"technology__item__desc__text__content__title\"\u003eギフトにもおすすめ\u003c\/h3\u003e\n                        \u003cp class=\"technology__item__desc__text__content__desc\"\u003e高級感のあるポリエステルツイル素材を使用。\n                            ベージュの生地とリボンで統一し、ブレインスリープのロゴを洗練されたサイズ感で配置。 幅広で豪華なリボンが、プレゼントに相応しい上質な高級感を演出します。\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection class=\"last animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"last__bg fadeInUpShort animated\"\u003e\n            \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_last_bg_model_v2.webp\" alt=\"\" width=\"2000\" height=\"1124\" class=\"u-pc\"\u003e \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_last_bg_model_sp_v2.webp\" alt=\"\" width=\"750\" height=\"940\" class=\"u-sp\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"last__inner\"\u003e\n            \u003cdiv class=\"awakenyourpossibility\"\u003e\n                \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_awakenyourpossibility.webp\" alt=\"\" width=\"626\" height=\"318\"\u003e \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_haramaki_recovery_awakenyourpossibility_sp.webp\" alt=\"\" width=\"386\" height=\"82\"\u003e\n            \u003c\/div\u003e\n            \u003cp class=\"last__txt\"\u003e冷えやすい夏にこそ効く\u003cbr\u003e次世代ハラマキ\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n    \u003csection id=\"faq\" class=\"faq js-box\"\u003e\n        \u003cdiv class=\"section__title\"\u003e\n            \u003ch2 class=\"section__title__text\"\u003e\n                \u003cspan\u003eFAQ\u003c\/span\u003eよくあるご質問\n            \u003c\/h2\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"faq__main\"\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e使用シーンはいつですか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        睡眠時用の腹巻きとして設計しておりますが、日中着用いただいても問題ございません。睡眠時だけでなく、リラックスタイムや日常生活でもお使いいただけます。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e着用の仕方を教えてください。\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003eBRAIN\n                        SLEEPのロゴで上下をご確認ください。腹巻の上部分を胸下の肋骨部分に合わせて、腹部まで覆って着用してください。着衣の上から、若しくは地肌に直接着用いただいても問題ございません。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003eサイズはどう選べばよいですか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        ユニセックスサイズです。ウエストの対応サイズは、Mサイズ（約64－79㎝）、Lサイズ（約79－94㎝）です。ご自身のウエストサイズに合わせてお選びください。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003eカラー展開はありますか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003eブラック1色です。どんなシーンにも合わせやすいベーシックカラーとなっています。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e洗濯はできますか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        はい、家庭洗濯機で洗濯可能です。白・淡色製品と分けて洗濯ネットに入れて洗濯してください。また、漂白剤（塩素系・酸素系）の使用はお避けください。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e乾燥機は使用できますか？\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e製品の縮みや劣化の原因になるので、タンブル乾燥はお避けください。日陰での吊り干しをお勧めします。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq__item\"\u003e\n                \u003ch3 class=\"faq__item__question\"\u003e生産工場について教えてください。\u003c\/h3\u003e\n                \u003cdiv class=\"faq__item__answer\"\u003e\n                    \u003cp class=\"faq__item__answer__text\"\u003e\n                        『奈良巻き』として有名な腹巻きの生産地である奈良県の歴史ある工場で生産されています。伝統的な技術と品質にこだわって製造しております。\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cstyle\u003e\n    .intro02__inner {\n        min-width: 900px;\n    }\n\n    @media screen and (max-width:749px) {\n        .intro02__inner {\n            min-width: unset;\n        }\n    }\n\u003c\/style\u003e\n\u003cp\u003e\n    \u003cscript src=\"https:\/\/cdn.jsdelivr.net\/npm\/slick-carousel@1.8.1\/slick\/slick.min.js\"\u003e\u003c\/script\u003e\n    \u003cscript\u003e\n        jQuery(\".faq__item__question\").click(function () {\n            if (jQuery(this).next('.faq__item__answer').is(':visible')) {\n                jQuery(this).next('.faq__item__answer').stop().slideUp();\n                jQuery(this).removeClass('open');\n            } else {\n                jQuery(this).next('.faq__item__answer').stop().slideDown();\n                jQuery(this).addClass('open');\n            }\n        });\n        jQuery(function () {\n            animate();\n            jQuery(window).on(\"scroll\", function () {\n                animate();\n            });\n        });\n        function animate() {\n            jQuery('.animatedParent').each(function () {\n                var offset = jQuery(this).data('offset');\n                if (offset) {\n                    offset = offset;\n                } else {\n                    offset = 0;\n                }\n                if (jQuery(this).isInViewport(offset)) {\n                    var parent = jQuery(this);\n                    delay = Number(parent.attr('data-sequence'));\n                    jQuery(jQuery(this).find('.animated')).each(function (index) {\n                        jQuery(jQuery(this)).delay(index * delay).queue(function (next) {\n                            if (!jQuery(this).hasClass('go')) {\n                                jQuery(this).addClass(\"go\");\n                                if (jQuery(this).parents('.full__recovery__svg__wrapper').length) {\n                                    jQuery(this).attr('class', 'animated fadeInRightShort slower go');\n                                }\n\n                            }\n                            next();\n                        });\n                    });\n                }\n            });\n        }\n        jQuery.fn.isInViewport = function (offset) {\n            \/\/ console.log('isInViewport');\n            var elementTop = jQuery(this).offset().top + offset;\n            var elementBottom = elementTop + jQuery(this).outerHeight();\n\n            var viewportTop = jQuery(window).scrollTop();\n            var viewportBottom = viewportTop + jQuery(window).height();\n\n            return elementBottom \u003e viewportTop \u0026\u0026 elementTop \u003c viewportBottom;\n        };\n\n        jQuery(function () {\n            const param = location.search;\n            if (param.indexOf(\"?ad\") === 0) {\n                console.log(\"通常広告\");\n\n                const fixed_01 = document.getElementById(\"fixed_01\");\n                fixed_01.style.display = \"none\";\n\n                \/\/商品ページヘッダー非表示\n                jQuery(\".shopify-section-group-header-group\").css({\n                    display: \"none\",\n                });\n\n                \/\/商品ページヘッダー非表示\n                jQuery(\".rwlp__header__wrapper\").css({\n                    display: \"block\",\n                });\n\n                if (window.matchMedia(\"(max-width: 768px)\").matches) {\n                    \/\/画面横幅が768px以下のときの処理\n                    jQuery(\"body\").css({\n                        \"padding-top\": \"65px\",\n                    });\n                } else {\n                    \/\/画面横幅が769px以上のときの処理\n                    jQuery(\"body\").css({\n                        \"padding-top\": \"90px\",\n                    });\n                }\n\n                \/\/商品ページ流入時　要素表示\n                jQuery(\".ad_off\").css({\n                    display: \"none\",\n                });\n\n                \/\/広告ページ（yahoo）流入時　要素非表示\n                jQuery(\".y_ad_on\").css({\n                    'cssText': 'display:none !important;'\n                    \/\/ display: \"none\",\n                });\n\n                \/\/広告ページ（通常）、商品ページ流入時　要素表示\n                jQuery(\".ad_on_off\").css({\n                    'cssText': 'display:block !important;'\n                    \/\/ display: \"block\",\n                });\n\n                \/\/広告ページ（通常、yahoo）流入時　要素表示\n                jQuery(\".ad_on\").css({\n                    display: \"block\",\n                });\n\n            } else {\n                console.log(\"なにもなし\");\n\n                \/\/広告ページ（yahoo）流入時　要素非表示\n                jQuery(\".y_ad_on\").css({\n                    'cssText': 'display:none !important;'\n                    \/\/ display: \"none\",\n                });\n\n                \/\/商品ページ流入時　要素表示\n                jQuery(\".ad_off\").css({\n                    display: \"block\",\n                });\n\n                \/\/商品ページ流入時　要素表示\n                jQuery(\".ad_on\").css({\n                    display: \"none\",\n                });\n            }\n        });\n\n        var startPos = 0,\n            winScrollTop = 0;\n        $(window).on(\"scroll\", function () {\n            winScrollTop = $(this).scrollTop();\n            if (winScrollTop \u003e= startPos) {\n                if (winScrollTop \u003e= 130) {\n                    $(\".rwlp__header__wrapper\").addClass(\"animate\");\n                    $(\".rwlp__header__wrapper\").addClass(\"hide\");\n                    $(\".rwlp__header__wrapper\").addClass(\"fixed\");\n                } else if (winScrollTop \u003e= 90) {\n                    $(\".rwlp__header__wrapper\").addClass(\"fixed\");\n                    $(\".rwlp__header__wrapper\").removeClass(\"animate\");\n                } else {\n                    $(\".rwlp__header__wrapper\").removeClass(\"fixed\");\n                }\n            } else {\n                $(\".rwlp__header__wrapper\").removeClass(\"hide\");\n            }\n            startPos = winScrollTop;\n        });\n    \u003c\/script\u003e\n\u003c\/p\u003e\n\u003cstyle\u003e\n    .spec__item__desc__text__content__title,\n    .technology__link__lists__title,\n    .technology__item__desc__text__content__title {\n        font-family: \"游ゴシック体\", YuGothic, \"Yu Gothic M\", \"游ゴシック Medium\", \"Yu Gothic Medium\", \"Yu Gothic Pr6N M\", sans-serif;\n        visibility: visible !important;\n    }\n\u003c\/style\u003e","brand":"株式会社ブレインスリープ","offers":[{"title":"M","offer_id":47870979834078,"sku":"W0015A1-MEBK","price":8800.0,"currency_code":"JPY","in_stock":true},{"title":"L","offer_id":47870979866846,"sku":"W0015A1-LABK","price":8800.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/thumbnail_haramaki_1.webp?v=1754378307"},{"product_id":"egift_socks","title":"【eギフト】ブレインスリープ ソックス リカバリー","description":"\u003cstyle\u003e\n.rwlp__header__wrapper {\n  background: #a0c0db;\n  height: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  z-index: 9;\n}\n@media screen and (min-width: 750px) {\n  .rwlp__header__wrapper {\n    padding: 0 30px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__wrapper {\n    padding: 0 20px;\n  }\n}\n.rwlp__header {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n@media screen and (min-width: 1200px) {\n  .rwlp__header {\n    height: 90px;\n  }\n}\n@media screen and (max-width: 1199px) {\n  .rwlp__header {\n    height: 65px;\n  }\n}\n@media screen and (min-width: 750px) {\n  .rwlp__header__logo {\n    width: 85px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__logo {\n    width: 70px;\n  }\n}\n@media screen and (min-width: 750px) {\n  .rwlp__header__menu__wrapper {\n    margin: 0 30px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__menu__wrapper {\n    \/* margin: 0 20px; *\/\n  }\n}\n.rwlp__header__menu__item {\n  display: inline-block;\n}\n@media screen and (min-width: 1200px) {\n  .rwlp__header__menu__item + .rwlp__header__menu__item {\n    margin-left: 35px;\n  }\n}\n@media screen and (min-width: 750px) and (max-width: 1199px) {\n  .rwlp__header__menu__item + .rwlp__header__menu__item {\n    margin-left: 30px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__menu__item + .rwlp__header__menu__item {\n    margin-left: 15px;\n  }\n}\n@media screen and (max-width: 749px) {\n  .rwlp__header__menu__item.rwlp__hidden__sm {\n    display: none;\n  }\n}\n@media screen and (min-width: 1200px) {\n  .rwlp__header__menu__link {\n    font-size: 14px;\n  }\n}\n@media screen and (max-width: 1199px) {\n  .rwlp__header__menu__link {\n    font-size: 14px;\n  }\n}\n.rwlp__header__wrapper.fixed {\n  position: fixed;\n  top: -90px;\n  transition: unset;\n}\n.rwlp__header__wrapper.animate {\n  transition: top 0.15s ease-out;\n  top: 0;\n}\n.rwlp__header__wrapper.hide {\n  top: -90px;\n}\n\n.rwlp__wrapper,\n#MainContent,\nhtml.js {overflow: unset;}\n@media screen and (max-width:749px){\n  .rwlp__wrapper,\n  #MainContent,\n  html.js {overflow: unset!important;}\n}\n.rwlp__wrapper div:empty {display: initial;}\nhtml {scroll-behavior: smooth;}\n.rte.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {transform: unset;animation: unset;opacity: 1;}\n\n.rwlp__wrapper a:empty,\n.rwlp__wrapper div:empty {display: initial;}\n.rwlp__wrapper video {height: auto;width: 100%;}\n.rwlp__wrapper a {text-decoration: unset;color: #000;}\n.rwlp__wrapper ul {list-style: none;}\n.technology__link__lists {padding: 0;}\n.rwlp__wrapper img {width: 100%;height: auto;max-width: 100%;border:unset;}\n.faq__item img {width: auto;max-width: 100%;}\n\n.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.fadeInUpShort{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\n\n\/* margin padding 調整*\/\n.sleep__info__quality__golden__title {margin:0}\n#cover.spec__item .spec__item__desc__text__content__title {margin-top: 0;}\n.kv img,\n.last img,\n.technology__item__desc__img img,\n.line__bnr img,\n.technology__link__lists__title{margin-bottom: 0;}\n.technology__item__feature {padding-left: 0!important;}\n.technology__link__lists{padding:0!important}\n\nbody{font-family:YuGothic,'Yu Gothic',\"Yu Gothic Pr6N R\",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif}.termina{font-family:Termina,\"游ゴシック体\",YuGothic,\"Yu Gothic M\",\"游ゴシック Medium\",\"Yu Gothic Medium\",\"Yu Gothic Pr6N M\",sans-serif!important;font-weight:400}.rwlp__wrapper{color:#000}body,details,div,fieldset,form,h1,h2,h3,h4,header,html,iframe,img,label,legend,li,nav,p,section,small,span,summary,ul,video{margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:0 0}button,input,select{appearance:none}.fadeInUpShort{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}body{overflow-x:hidden}h1,h2,h3,h4{font-weight:400!important}.technology__item__desc__img{position:relative;width:58.1428571428571vw;flex:1}.technology__item__desc__img video{width:100%;height:auto}.technology__item__desc__img img{width:100%;height:auto}.technology__item__desc__text__content__title{font-size:30px;font-weight:500;letter-spacing:-.06em;line-height:1.733333333333333}@media screen and (max-width:749px){.technology__item__desc__img{margin-left:auto;width:calc(100% - 20px)}.technology__item__desc__img img{height:100%}.technology__item__desc__text__content__title{font-size:23px;line-height:1.84}}.u-pc{display:block!important}.u-sp{display:none!important}@media screen and (max-width:767px){.u-pc{display:none!important}.u-sp{display:block!important}}img{vertical-align:bottom}.kv{position:relative}.kv__txt{position:absolute;font-size:3.16428vw;top:7.5vw;left:8.4285vw;line-height:1.35;font-family:\"Yu Gothic Pr6N D\",\"游ゴシック体\",YuGothic,sans-serif}.kv__features{position:absolute;top:17vw;left:8.4285vw;display:flex;gap:0.71428vw 0;flex-wrap:wrap;justify-content:space-between;width:30vw}.kv__features__item{background-size:100% 100%;display:flex;align-items:center;justify-content:center;width:14.5vw;height:3.1428vw;font-size:1.42857vw}.intro01__txt3{line-height:1.4;margin-bottom:40px}.intro01__txt3 span{font-size:29px;border-bottom:1px solid #fff;padding-bottom:4px}@media screen and (max-width:767px){.kv__txt{font-size:6.2666vw;top:39.4666vw;left:8.18666vw;font-feature-settings:'palt'}.kv__features{top:57.6vw;left:8.4285vw;display:block;width:28.8vw}.kv__features__item{width:28.8vw;height:6.256vw;font-size:2.837333vw;margin-bottom:1.6vw}.intro01__txt3{margin-bottom:16px}.intro01__txt3 span{font-size:29px;border-bottom:1px solid #fff;padding-bottom:4px}}\n.u-pc {\n  display: block!important\n}\n.u-sp {\n  display: none!important\n}\n\n@media screen and (max-width:767px) {\n  .u-pc {\n    display: none!important\n  }\n  .u-sp {\n    display: block!important\n  }\n}\n\n\/* giftブロック調整用 *\/\n  .gitf_block{\n    border-top: 1px #000 solid;\n    padding-top: 100px;\n    margin-top: 0px;\n  }\n\n@media screen and (max-width:767px) {\n  .gitf_block{\n    padding-top: 50px;\n  }\n}\n\n\n\u003c\/style\u003e\n\n\u003cdiv class=\"rwlp__wrapper\"\u003e\n  \u003cheader style=\"display: none\" class=\"rwlp__header__wrapper\"\u003e\n    \u003cdiv class=\"\"\u003e\n      \u003cheader class=\"rwlp__header\"\u003e\n        \u003ca href=\"#\" class=\"rwlp__header__logo\"\u003e\n          \u003cimg height=\"40\" width=\"85\" alt=\"ロゴ：Brain Sleep\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_adpage_logo.webp\"\u003e\n        \u003c\/a\u003e\n        \u003cnav class=\"rwlp__header__menu__wrapper\"\u003e\n          \u003cul class=\"rwlp__header__menu\"\u003e\n            \u003cli class=\"rwlp__header__menu__item\"\u003e\n              \u003ca href=\"#technology\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eテクノロジー\u003c\/a\u003e\n            \u003c\/li\u003e\n            \u003cli class=\"rwlp__header__menu__item\"\u003e\n              \u003ca href=\"#spec\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003e仕様\u003c\/a\u003e\n            \u003c\/li\u003e\n            \u003cli class=\"rwlp__header__menu__item\"\u003e\n              \u003ca href=\"#faq\" class=\"rwlp__header__menu__link custom-smooth-scroll\"\u003eFAQ\u003c\/a\u003e\n            \u003c\/li\u003e\n          \u003c\/ul\u003e\n        \u003c\/nav\u003e\n      \u003c\/header\u003e\n    \u003c\/div\u003e\n  \u003c\/header\u003e\n  \u003csection class=\"kv\"\u003e\n    \u003cdiv class=\"kv__bg\"\u003e\n      \u003cimg class=\"u-pc lozad\" loading=\"lazy\" decoding=\"async\" src=\"\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_bg_model.webp?2\" alt=\"\" width=\"2000\" height=\"1124\"\u003e\n      \u003cimg class=\"u-sp lozad\" loading=\"lazy\" decoding=\"async\" src=\"\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_bg_model_sp.webp?2\" alt=\"\" width=\"750\" height=\"1014\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kv__inner\"\u003e\n      \u003cp class=\"kv__txt\"\u003e究極の\u003cbr\u003e睡眠着圧ソックス\u003c\/p\u003e\n      \u003cdiv class=\"kv__features\"\u003e\n        \u003cdiv class=\"kv__features__item\"\u003eむくみ改善\u003c\/div\u003e\n        \u003cdiv class=\"kv__features__item\"\u003eリンパの流れ改善\u003c\/div\u003e\n        \u003cdiv class=\"kv__features__item\"\u003e血行促進\u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kv__logo\"\u003e\n        \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo.webp\" alt=\"\" width=\"1082\" height=\"136\"\u003e\n        \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo_sp.webp\" alt=\"\" width=\"276\" height=\"132\"\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"kv__tag\"\u003e一般医療機器\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro01 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro01__inner\"\u003e\n      \u003cdiv class=\"intro01__left fadeInUpShort animated\"\u003e\n        \u003cp class=\"intro01__txt1\"\u003eMakuakeで応援購入\u003c\/p\u003e\n        \u003cp class=\"intro01__txt2\"\u003e約\u003cspan class=\"termina\"\u003e¥40,000,000\u003c\/span\u003e達成\u003c\/p\u003e\n        \u003cp class=\"intro01__txt3 u-pc\"\u003eしたブレインスリープ リカバリー シリーズから\u003cbr\u003e\u003cspan\u003eソックスモデル\u003c\/span\u003eがついに登場！\u003c\/p\u003e\n        \u003cp class=\"intro01__txt3 u-sp\"\u003eブレインスリープ リカバリー シリーズから\u003cbr\u003e\u003cspan\u003eソックスモデル\u003c\/span\u003eがついに登場！\u003c\/p\u003e\n        \u003cdiv class=\"intro01__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_makuake.webp?2\" alt=\"\" width=\"980\" height=\"390\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"intro01__arrow fadeInUpShort animated\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro01_arrow.webp\" alt=\"\" width=\"202\" height=\"94\" class=\"u-pc\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro01_arrow_sp.webp\" alt=\"\" width=\"70\" height=\"150\" class=\"u-sp\"\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"intro01__right fadeInUpShort animated\"\u003e\n        \u003cp class=\"intro01__txt4\"\u003e\u003cspan\u003e独自開発睡眠着圧\u003c\/span\u003eで\u003c\/p\u003e\n        \u003cdiv class=\"intro01__features\"\u003e\n          \u003cp class=\"intro01__features__item\"\u003eむくみ\u003cbr\u003e改善\u003c\/p\u003e\n          \u003cp class=\"intro01__features__item\"\u003e血行促進\u003c\/p\u003e\n          \u003cp class=\"intro01__features__item\"\u003eリンパの\u003cbr\u003e流れ改善\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro02 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro02__inner\"\u003e\n      \u003cdiv class=\"fadeInUpShort animated\"\u003e\n        \u003cp class=\"intro02__txt\"\u003e20種の機能を搭載した\u003cbr\u003e究極の睡眠特化ソックス\u003c\/p\u003e\n        \u003cdiv class=\"intro02__wrap\"\u003e\n          \u003cdiv class=\"intro02__bg\"\u003e\n            \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/32f715cfd66f4ad39215b3e76391491f.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"intro02__features\"\u003e\n            \u003cdiv class=\"intro02__features__head\"\u003e\n\u003cspan class=\"termina\"\u003e20\u003c\/span\u003e種の機能\u003c\/div\u003e\n            \u003cdiv class=\"intro02__features__left\"\u003e\n              \u003cp class=\"intro02__features__item\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eむくみ改善\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003e血行促進\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eリンパの流れ改善\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e段階着圧設計の採用\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eふくらはぎサポート\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eテーピングホールド\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e遠赤外線輻射熱\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e吸湿発熱\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e吸湿放湿\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eつま先熱放散\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"intro02__features__right\"\u003e\n              \u003cp class=\"intro02__features__item\"\u003e抗菌防臭\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eかかとの包み込み\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e横アーチサポート\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e履きやすさ\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003e食い込み軽減\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eメッシュで通気性\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eパイル底で足裏温め\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eなめらかな触感\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eずれ落ち防止\u003c\/p\u003e\n              \u003cp class=\"intro02__features__item\"\u003eつま先ずれ防止\u003c\/p\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro03 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro03__inner\"\u003e\n      \u003cdiv class=\"intro03__txt\"\u003e\n        \u003cp class=\"intro03__txt1 fadeInUpShort animated\"\u003eメディックリカバリーファイバーで\u003cbr\u003e疲れた足を集中温熱\u003c\/p\u003e\n        \u003cp class=\"intro03__txt2 fadeInUpShort animated termina\"\u003eMEDIC \u003cbr class=\"u-pc\"\u003eRECOVERY\u003cbr\u003eFIBER\u003c\/p\u003e\n        \u003c!-- \u003cp class=\"intro03__txt2__ja fadeInUpShort animated termina\"\u003eメディック リカバリー ファイバー\u003c\/p\u003e --\u003e\n        \u003cp class=\"intro03__txt3 fadeInUpShort animated u-pc\"\u003e地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"intro03__img\"\u003e\n        \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"intro03__txt4 fadeInUpShort animated u-sp\"\u003e地球上の天然鉱物を原料とするセラミックス。その中でも純度の高いセラミックスを厳選し、独自ブレンドをしました。繊維へのナノレベルでの高濃度処方、特殊な糸形状により、高レベルの遠赤外線放射を実現。\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro04 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro04__inner\"\u003e\n      \u003cp class=\"intro04__ttl__en termina fadeInUpShort animated\"\u003eISSUE\u003c\/p\u003e\n      \u003cp class=\"intro04__ttl fadeInUpShort animated\"\u003e足の疲れの悩み×睡眠の質の悩みは\u003cbr\u003eお互い関連していると言われています\u003c\/p\u003e\n      \u003cp class=\"intro04__txt fadeInUpShort animated\"\u003e長時間のデスクワークや立ち仕事、そして日々の家事…。\u003cbr\u003e日中の活動では、重力の影響によって足に大きな負担がかかっています。\u003cbr\u003e\u003cbr\u003eその結果、足の疲れや不調は深刻化し、放置すれば睡眠の質にまで影響を及ぼすことも。\u003cbr\u003e実際、現代人の約7割が足の疲れに悩んでいるとも言われています。\u003cbr\u003e\u003cbr\u003eそのため、足と睡眠を同時にケアする総合的なアプローチが求められています。\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro05 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro05__head fadeInUpShort animated\"\u003e\n      \u003cp class=\"intro05__head__ttl\"\u003e体の重力が軽減される\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e睡眠時に足をケアする\u003c\/span\u003e事は効果的\u003c\/p\u003e\n      \u003cdiv class=\"intro05__head__wrap\"\u003e\n        \u003cdiv class=\"intro05__head__body\"\u003e\n          \u003cp class=\"intro05__head__txt1\"\u003e\u003cspan\u003e第2の心臓といわれるふくらはぎを\u003c\/span\u003e\u003cbr class=\"u-sp\"\u003e寝ている間に集中メンテナンス\u003c\/p\u003e\n          \u003cp class=\"intro05__head__txt2\"\u003e睡眠の質は血行と深く関わり、足の血流が良好だと体温調節が円滑に保たれ、深い睡眠につながります。ソックスリカバリーは、段階着圧と遠赤外線輻射熱の機能により血行を改善し、サポートします。\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"intro05__head__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro05_figure.webp\" alt=\"\" width=\"1020\" height=\"776\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"intro05__bottom fadeInUpShort animated\"\u003e\n      \u003cp class=\"intro05__bottom__txt\"\u003e\u003cspan\u003eソックスリカバリー\u003c\/span\u003eで、\u003cspan\u003e好循環へ\u003c\/span\u003e導きます\u003c\/p\u003e\n      \u003cdiv class=\"intro05__bottom__img\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro05_img.webp\" alt=\"\" width=\"1996\" height=\"428\" class=\"u-pc\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro05_img_sp.webp\" alt=\"\" width=\"750\" height=\"314\" class=\"u-sp\"\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"intro06 animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"intro06__img\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro06_bg_model.webp?2\" alt=\"\" width=\"2000\" height=\"1192\" class=\"u-pc\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_intro06_bg_model_sp.webp?2\" alt=\"\" width=\"751\" height=\"769\" class=\"u-sp\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"intro06__inner\"\u003e\n      \u003cp class=\"intro06__txt\"\u003e限られた睡眠時間で\u003cbr\u003eリカバリー\u003c\/p\u003e\n      \u003cdiv class=\"intro06__logo\"\u003e\n        \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo.webp\" alt=\"\" width=\"1082\" height=\"136\"\u003e\n        \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_kv_logo_sp.webp\" alt=\"\" width=\"276\" height=\"132\"\u003e\n      \u003c\/div\u003e\n      \u003cp class=\"intro06__tag\"\u003e一般医療機器\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"technology\" id=\"technology\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eTECHNOLOGY\u003c\/span\u003eテクノロジー\n      \u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"technology__link\"\u003e\n      \u003cul class=\"technology__link__lists animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n\n        \u003cli class=\"item fadeInUpShort animated\"\u003e\n          \u003ca class=\"custom-smooth-scroll\" href=\"#tech01\"\u003e\n            \u003cdiv class=\"technology__link__lists__img\"\u003e\n              \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_nav01.webp\" alt=\"\" width=\"784\" height=\"722\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__link__lists__title\"\u003e\n\u003cspan\u003e01\u003c\/span\u003e血行促進し\u003cbr class=\"u-sp\"\u003eリカバリー\u003c\/h3\u003e\n          \u003c\/a\u003e\n        \u003c\/li\u003e\n\n        \u003cli class=\"item fadeInUpShort animated\"\u003e\n          \u003ca class=\"custom-smooth-scroll\" href=\"#tech02\"\u003e\n            \u003cdiv class=\"technology__link__lists__img\"\u003e\n              \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_nav02.webp?2\" alt=\"\" width=\"784\" height=\"722\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__link__lists__title\"\u003e\n\u003cspan\u003e02\u003c\/span\u003e独自開発素材で\u003cbr\u003e集中温熱\u003c\/h3\u003e\n          \u003c\/a\u003e\n        \u003c\/li\u003e\n        \u003cli class=\"item fadeInUpShort animated\"\u003e\n          \u003ca class=\"custom-smooth-scroll\" href=\"#tech03\"\u003e\n            \u003cdiv class=\"technology__link__lists__img\"\u003e\n              \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_nav03.webp?2\" alt=\"\" width=\"784\" height=\"722\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__link__lists__title no03\"\u003e\n\u003cspan\u003e03\u003c\/span\u003eリカバリーと睡眠の為の\u003cbr class=\"u-pc\"\u003e機能を搭載\u003c\/h3\u003e\n          \u003c\/a\u003e\n        \u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item\" id=\"tech01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_main_model.webp\" alt=\"\" width=\"1628\" height=\"920\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n\u003cspan\u003e01\u003c\/span\u003eRECOVERY\u003c\/h2\u003e\n            \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\n              \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_main_model_sp.webp\" alt=\"\" width=\"712\" height=\"710\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003e血行促進しリカバリー\u003c\/h3\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e一般医療機器ソックスで、\u003cbr\u003e寝ながらメンテナンス\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_01.webp?2\" alt=\"\" width=\"1632\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e一般医療機器ソックスで、\u003cbr\u003e寝ながらメンテナンス\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e日々の睡眠時間を効果的に利用。\u003cbr\u003e独自開発の睡眠コンプレッションで、血行促進・リンパの流れ改善・むくみ改善を実現。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech01_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e独自開発の睡眠着圧\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"border: 1px solid #000;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech01_02.webp?2\" alt=\"\" width=\"1624\" height=\"906\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e独自開発の睡眠着圧\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e足首からふくらはぎにかけて絶妙な段階着圧値を設定して、睡眠中にメンテナンスが出来ます。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"technology__item\" id=\"tech02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_main.webp?2\" alt=\"\" width=\"1628\" height=\"920\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n\u003cspan\u003e02\u003c\/span\u003eLEG HEAT\u003c\/h2\u003e\n            \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\n              \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_main_sp.webp?2\" alt=\"\" width=\"704\" height=\"706\"\u003e\n            \u003c\/div\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003eメディックリカバリー\u003cbr\u003eファイバーで集中温熱\u003c\/h3\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e独自開発素材\u003cbr\u003eMEDIC RECOVERY FIBER\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_01.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e独自開発素材\u003cbr\u003eMEDIC RECOVERY FIBER\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eナノレベルの厳選したセラミックスを数種類ブレンドしました。独自加工で、高濃度のセラミックスの練り込みに成功。さらに、特殊な糸形状により高い遠赤外線輻射熱効果を実現しました。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eMEDIC RECOVERY FIBER\u003cbr\u003eによる遠赤外線輻射熱\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/cb03f003d9814e5289482286d4d1cfaa.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eMEDIC RECOVERY FIBER\u003cbr\u003eによる遠赤外線輻射熱\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eリカバリーを目指して、一から糸と生地を開発。体の体温を効果的に吸収し、遠赤外線として体へ輻射するテクノロジー。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech02_03\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eソックスリカバリーを\u003cbr\u003eはくだけで、31.4℃に温熱\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech02_03.webp?2\" alt=\"\" width=\"1632\" height=\"918\"\u003e\n          \u003cp class=\"technology__item__desc__img__txt\"\u003e▲本製品使用後のサーモグラフィ\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eソックスリカバリーを\u003cbr\u003eはくだけで、31.4℃に温熱\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eメディックリカバリーファイバーの遠赤外線輻射熱の効果で0.6℃温度上昇し、疲れた足をしっかり温熱します。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"technology__item\" id=\"tech03\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cvideo class=\"u-pc\" playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/32f715cfd66f4ad39215b3e76391491f.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\u003c\/video\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch2 class=\"technology__item__title fadeInUpShort animated\"\u003e\n\u003cspan\u003e03\u003c\/span\u003eCOMFORT\u003cbr\u003eFUNCTION\u003c\/h2\u003e\n            \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated u-sp\"\u003e\n              \u003cvideo playsinline=\"\" muted=\"\" loop=\"loop\" autoplay=\"autoplay\" preload=\"none\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/32f715cfd66f4ad39215b3e76391491f.mp4\" style=\"aspect-ratio: 1920\/1080\" height=\"1080\" width=\"1920\"\u003e\n            \u003c\/video\u003e\n\u003c\/div\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title fadeInUpShort animated\"\u003eリカバリーと睡眠の為の\u003cbr\u003e20種の機能を搭載\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e睡眠の為の20種の機能を搭載した超多機能ソックス。\u003cbr\u003e熱放散をしながら疲れた足を徹底的にメンテナンス。\u003c\/p\u003e\n            \u003cdiv class=\"u-sp\"\u003e\n              \u003cdiv class=\"intro02__features\" style=\"width: calc(100% - 40px);margin-top: 24px;\"\u003e\n                \u003cdiv class=\"intro02__features__head\"\u003e\n\u003cspan class=\"termina\"\u003e20\u003c\/span\u003e種の機能\u003c\/div\u003e\n                \u003cdiv class=\"intro02__features__left\"\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eむくみ改善\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003e血行促進\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e\u003cspan\u003e一般医療機器\u003c\/span\u003eリンパの流れ改善\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e段階着圧設計の採用\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eふくらはぎサポート\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eテーピングホールド\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e遠赤外線輻射熱\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e吸湿発熱\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e吸湿放湿\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eつま先熱放散\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"intro02__features__right\"\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e抗菌防臭\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eかかとの包み込み\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e横アーチサポート\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e履きやすさ\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003e食い込み軽減\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eメッシュで通気性\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eパイル底で足裏温め\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eなめらかな触感\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eずれ落ち防止\u003c\/p\u003e\n                  \u003cp class=\"intro02__features__item\" style=\"padding: 0;letter-spacing: -0.03em;\"\u003eつま先ずれ防止\u003c\/p\u003e\n                \u003c\/div\u003e\n              \u003c\/div\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\u003cdiv class=\"tech__slider\"\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_01\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eかかとのフィット感\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_01.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eかかとのフィット感\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eYヒールでしっかりかかとをホールドして着用時の安定感を実現しました。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_02\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e履き口\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_02.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e履き口\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e履きやすさのために絶妙な伸縮性を、内側に滑りにくい糸の使用で着用時のずれにくさを実現しました。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_03\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e足裏\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_03.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e足裏\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e足裏をパイル組織にすることでクッション性を持たせて、部分的に効果的に温めます。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_04\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eふくらはぎ\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_04.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eふくらはぎ\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e段階着圧で血行を促進。テーピングホールドとふくらぎサポートでしっかりふくらぎをメンテナンスします。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_01_05\" style=\"margin-top: 0;\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eつま先＆甲\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_01_05.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eつま先＆甲\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eオープントゥ仕様と甲の通気性UPで、睡眠中の熱放散を実現。そして横アーチサポートで足のずれにくさをサポートします。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\u003c\/div\u003e\n\n  \u003csection class=\"technology__item technology__item__sub\" id=\"tech03_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003e靴下一筋90年の伝統の\u003cbr\u003e国内縫製で作られる安心品質\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_tech03_02.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003e靴下一筋90年の伝統の\u003cbr\u003e国内縫製で作られる安心品質\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e大阪府松原市の伝統ある工場で、糸、染色、編立て、セット、検品まで一貫生産で行っています。各工程で、職人の手で1着ずつ大切に作られています。\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"spec__title\" id=\"scene\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eSCENE\u003c\/span\u003eシーン\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"scene__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"scene__inner\"\u003e\n      \u003cdiv class=\"scene__left\"\u003e\n        \u003cdiv class=\"scene__img01 fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene01_model.webp\" alt=\"\" width=\"1140\" height=\"642\" class=\"u-pc\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene01_model_sp.webp\" alt=\"\" width=\"710\" height=\"400\" class=\"u-sp\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"scene__img03 fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene02_model.webp?2\" alt=\"\" width=\"1208\" height=\"1416\" class=\"u-pc\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene02_model_sp.webp?3\" alt=\"\" width=\"710\" height=\"400\" class=\"u-sp\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"scene__img02 fadeInUpShort animated\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene03_model.webp\" alt=\"\" width=\"1140\" height=\"642\" class=\"u-pc\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_scene03_model_sp.webp?3\" alt=\"\" width=\"710\" height=\"400\" class=\"u-sp\"\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"spec__title\" id=\"voice\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eMONITOR’S VOICE\u003c\/span\u003eモニターの声\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"voice__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"voice__left fadeInUpShort animated\"\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice01.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e毎晩、脚が浮腫むのですが、夜にこちらを着用すると\u003cspan\u003e何事もなかったように\u003c\/span\u003e戻っています。今までは強い着圧ソックスを使用していたので、このくらいの心地よい程度の着圧で本当に効果あるのかなと思いましたが、抜群に効果がありました!イベントで10時間近く歩き回り、翌日ライブで5時間半立ちっぱなしの日もリセットしてくれました。また、日中デスクワーク中につけていても、\u003cspan\u003e夕方浮腫んでいません!\u003c\/span\u003e 夕方用事がある日などはマストで頼りたいアイテムです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice02.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eこれまで睡眠中は靴下を脱いでいたので、違和感があるのでは？と思いましたが、足先がオープンになっているので\u003cspan\u003e全く気にならず\u003c\/span\u003e朝まで快適に過ごせました。立ち仕事をした晩に履くと、翌朝には何事もなかったかのように足が軽くなっていて驚きました！滑り止めが付いるので、\u003cspan\u003e足首に落ちてこない\u003c\/span\u003eのも嬉しいポイントです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice03.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eきつすぎない着圧で\u003cspan\u003e着脱時も着用中も\u003c\/span\u003e全くストレスが無いです。なのに浮腫みが取れるはもちろん、他の着圧ソックスと比較して\u003cspan\u003e脚の軽さがかなり違う\u003c\/span\u003e気がしました。滑り止めのおかげで就寝～朝までズレ落ちてこずよかったです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"voice__right fadeInUpShort animated\"\u003e\n      \u003cdiv class=\"voice__item u-sp\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice01.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e毎晩、脚が浮腫むのですが、夜にこちらを着用すると\u003cspan\u003e何事もなかったように\u003c\/span\u003e戻っています。今までは強い着圧ソックスを使用していたので、このくらいの心地よい程度の着圧で本当に効果あるのかなと思いましたが、抜群に効果がありました!イベントで10時間近く歩き回り、翌日ライブで5時間半立ちっぱなしの日もリセットしてくれました。また、日中デスクワーク中につけていても、\u003cspan\u003e夕方浮腫んでいません!\u003c\/span\u003e 夕方用事がある日などはマストで頼りたいアイテムです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item u-sp\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice02.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eこれまで睡眠中は靴下を脱いでいたので、違和感があるのでは？と思いましたが、足先がオープンになっているので\u003cspan\u003e全く気にならず\u003c\/span\u003e朝まで快適に過ごせました。立ち仕事をした晩に履くと、翌朝には何事もなかったかのように足が軽くなっていて驚きました！滑り止めが付いるので、\u003cspan\u003e足首に落ちてこない\u003c\/span\u003eのも嬉しいポイントです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item u-sp\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice03.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eきつすぎない着圧で\u003cspan\u003e着脱時も着用中も\u003c\/span\u003e全くストレスが無いです。なのに浮腫みが取れるはもちろん、他の着圧ソックスと比較して\u003cspan\u003e脚の軽さがかなり違う\u003c\/span\u003e気がしました。滑り止めのおかげで就寝～朝までズレ落ちてこずよかったです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e30代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice04.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e運動でたくさん歩いた日に使うと、次の日\u003cspan\u003e疲れが軽減された\u003c\/span\u003e実感がありました。締め付け感もちょうどよく、ストレスなく眠れました。滑り止めのおかげなのか、寝相の悪い私でも\u003cspan\u003eずれたりはしていなかった\u003c\/span\u003eです。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice05.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003eこれまで着圧ソックスは「蒸れる」「締め付けがきつくて寝苦しい」というイメージがあり、使用を避けていましたが、このソックスは\u003cspan\u003e蒸れず、締め付け感もなく快適に眠る\u003c\/span\u003eことができました。普段デスクワークのため足のむくみが気になっていましたが、\u003cspan\u003e翌朝にはスッキリ軽くなっていて\u003c\/span\u003e、とても満足しています。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e20代 女性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice06.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e日々のマッサージは欠かせないものでしたがこのソックスを履いて寝ると翌朝の目覚めが良く、\u003cspan\u003e脚の疲れだけでなく全身の疲れがとれる\u003c\/span\u003e感じ。今では毎晩履いており、出張時も必ず持っていきます。締め付けの強度がちょうど良いのが素晴らしい。エアコンをつけて寝るようになってからも\u003cspan\u003e冷え防止\u003c\/span\u003eによいようです。通年、私には必要なアイテムとなっています。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e60代 男性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"voice__item\"\u003e\n        \u003cdiv class=\"voice__item__img\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_voice07.webp\" alt=\"\" width=\"140\" height=\"140\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"voice__item__content\"\u003e\n          \u003cp class=\"voice__item__content__txt\"\u003e今まで着圧ソックスをはく習慣はなかったのですが、はいてみてビックリです。\u003cspan\u003e足が凄く楽になります\u003c\/span\u003e。特に、趣味のマラソンで過酷に脚を酷使した夜はもう欠かすことが出来ません。\u003cspan\u003e睡眠中にメンテナンス出来る\u003c\/span\u003e事はすごく理にかなっていると思います。\u003c\/p\u003e\n          \u003cp class=\"voice__item__content__user\"\u003e50代 男性\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"spec__title\" id=\"spec\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eSPEC\u003c\/span\u003eスペック\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"spec__wrap animatedParent animateOnce u-pb-0\" data-sequence=\"300\" data-offset=\"300\" id=\"color\"\u003e\n    \u003cdiv class=\"color fadeInUpShort animated\"\u003e\n      \u003cdiv class=\"color__img\"\u003e\n        \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_spec01.webp\" alt=\"\" width=\"662\" height=\"1030\"\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"color__txt\"\u003e\n        \u003cp\u003e■対応サイズガイド\u003c\/p\u003e\n        \u003ctable class=\"spec__table\"\u003e\n          \u003cthead\u003e\n            \u003ctr\u003e\n              \u003cth\u003eサイズ(cm)\u003c\/th\u003e\n              \u003cth\u003e\u003cspan class=\"termina\"\u003eS\u003c\/span\u003e\u003c\/th\u003e\n              \u003cth\u003e\u003cspan class=\"termina\"\u003eM\u003c\/span\u003e\u003c\/th\u003e\n            \u003c\/tr\u003e\n          \u003c\/thead\u003e\n          \u003ctbody\u003e\n            \u003ctr\u003e\n              \u003cth\u003eふくらはぎ\u003c\/th\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e32-38\u003c\/span\u003e\u003c\/td\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e36-42\u003c\/span\u003e\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003cth\u003e足首\u003c\/th\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e19-23\u003c\/span\u003e\u003c\/td\u003e\n              \u003ctd\u003e\u003cspan class=\"termina\"\u003e21-25\u003c\/span\u003e\u003c\/td\u003e\n            \u003c\/tr\u003e\n          \u003c\/tbody\u003e\n        \u003c\/table\u003e\n        \u003cdiv class=\"size fadeInUpShort animated\"\u003e\n          \u003cp class=\"size__title u-mb-8\"\u003e■特記事項\u003c\/p\u003e\n          \u003cp class=\"size__note\"\u003e\n              【種類及び一般的名称】 機械器具（12） 理学診療用器具  一般医療機器 弾性ストッキング 31724000\u003cbr\u003e【製造販売届出番号】11B1X10025292803\u003cbr\u003e【効能・効果】血行促進、むくみ改善、リンパ液の流れの改善\u003c\/p\u003e\n          \u003cdiv class=\"size__note__detail\"\u003e続きを見る\u003c\/div\u003e\n          \u003cp class=\"size__note size__note__hide\"\u003e【使用方法】\u003cbr\u003e1.レッグ部分を手繰りよせ、かかと位置を合わせるように履く。\u003cbr\u003e2.両手の親指で履き口部分を持ち上げて左右を均等に引き上げる。\u003cbr\u003e3.履き口を正しい位置まで上げれば完成。\u003cbr\u003e【使用上の注意】\u003cbr\u003e次の方は、ご使用前に医師に相談してください。\u003cbr\u003e1．現在、病気やけがによる脚のむくみやだるさを感じる方\u003cbr\u003e2．血圧の高い方、心臓・腎臓などに障害のある方\u003cbr\u003e3．現在、かゆみや発疹をおこしている方\u003cbr\u003e4．血行障害をおこしたことのある方\u003cbr\u003e【取り扱い説明】\u003cbr\u003e1. サイズの合わないものを使用しないでください。（血行が悪くなるおそれがあります。）\u003cbr\u003e2．2枚重ねて使用しないでください。（血行が悪くなるおそれがあります。）\u003cbr\u003e3．ソックスをひざ裏にかかるまで引き上げないでください。（ひざ裏の血行が悪くなるおそれがあります。）\u003cbr\u003e4．使用中、使用後に気分が悪くなったり、かゆみ、発疹、痛みなどの異常を感じた場合は、すぐに使用を中止してください。\n          \u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\n  \u003csection class=\"technology__item technology__item__sub gitf_block\" id=\"tech03_02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc__text\"\u003e\n        \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n          \u003ch3 class=\"technology__item__desc__text__content__title u-sp\"\u003eギフトにもおすすめ\u003c\/h3\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_giftwrapping.webp\" alt=\"\" width=\"1628\" height=\"918\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content\"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eギフトにもおすすめ\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e\n                    高級感のあるポリエステルツイル素材を使用。\n                    ベージュの生地とリボンで統一し、ブレインスリープのロゴを洗練されたサイズ感で配置。\n                    幅広で豪華なリボンが、プレゼントに相応しい上質な高級感を演出します。\n            \u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\n\n  \u003csection class=\"relatedProducts\" id=\"relatedProducts\"\u003e\n    \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n        \u003cspan\u003eRELATED PRODUCTS\u003c\/span\u003e関連アイテム\u003c\/h2\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" style=\"padding-bottom: 0;border-bottom: unset;\" id=\"related01\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"\"\u003e\n        \u003ch2 class=\"technology__item__title fadeInUpShort animated related__ttl\"\u003e\n          さらに究極のリカバリーを\u003cbr class=\"u-sp\"\u003e追求したい方へ\n        \u003c\/h2\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"technology__item__desc\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"padding: 0;height: unset;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_related01.webp\" alt=\"\" width=\"870\" height=\"580\" style=\"height: unset; position: relative;\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content \"\u003e\n            \u003cp class=\"spec__tag\"\u003e一般医療機器\u003c\/p\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eブレインスリープ \u003cbr\u003eウェア リカバリー\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e着て寝るだけでフルリカバリー\u003c\/p\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin-top: 16px;\"\u003e・独自開発メディックリカバリーファイバーで\u003cbr\u003e血行促進し、疲労回復\u003cbr\u003e・快適な睡眠を追求した独自開発の軽量スウェット生地\u003cbr\u003e・洗濯機で丸洗い出来て、さらに制菌と消臭機能で毎日清潔\u003c\/p\u003e\n            \u003ca href=\"https:\/\/brain-sleep.com\/products\/wear_recovery\" class=\"related__btn\" target=\"_blank\"\u003e詳しくはこちら\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" style=\"padding-bottom: 0;border-bottom: unset;\" id=\"related02\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"padding: 0;height: unset;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_related02.webp\" alt=\"\" width=\"960\" height=\"440\" style=\"height: unset; position: relative;\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content \"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eブレインスリープ \u003cbr\u003eライトコンフォーター リカバリー\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003e遠赤外線テクノロジーで体を温める\u003cbr\u003eリバーシブル毛布\u003c\/p\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin-top: 16px;\"\u003e・メディックリカバリーファイバーで、体を究極に温めて疲労回復へ導く\u003cbr\u003e・ムレ難さ、制菌性の清潔さ。\u003cbr\u003e極上の肌触りで、いつまでも包まっていたい快適さ\u003cbr\u003e・冬向けのカシミヤブラン、秋春向けのコットンブランで、秋冬春の長期間使用できるリバーシブル構造\u003c\/p\u003e\n            \u003ca href=\"https:\/\/brain-sleep.com\/products\/comforter_recovery\" class=\"related__btn\" target=\"_blank\"\u003e詳しくはこちら\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"technology__item technology__item__sub\" style=\"border-bottom: unset;\" id=\"related03\"\u003e\n    \u003cdiv class=\"technology__item__inner animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"technology__item__desc\"\u003e\n        \u003cdiv class=\"technology__item__desc__img fadeInUpShort animated\" style=\"padding: 0;height: unset;\"\u003e\n          \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_related03.webp\" alt=\"\" width=\"666\" height=\"568\" style=\"height: unset; position: relative;\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"technology__item__desc__text fadeInUpShort animated\"\u003e\n          \u003cdiv class=\"technology__item__desc__text__content \"\u003e\n            \u003ch3 class=\"technology__item__desc__text__content__title u-pc\"\u003eブレインスリープ \u003cbr\u003eハラマキ リカバリー\u003c\/h3\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\"\u003eコア温熱×着圧で寝ながら集中ケア\u003c\/p\u003e\n            \u003cp class=\"technology__item__desc__text__content__desc\" style=\"margin-top: 16px;\"\u003e・メディックリカバリーファイバー採用、遠赤外線輻射熱で腹部を集中温熱\u003cbr\u003e・独自スリープコアコンプレッションで睡眠着圧。\u003cbr\u003e【呼吸コンサルタント大貫崇監修】\u003cbr\u003e・締め付けし過ぎないリラックス設計！ムレ難い着用と抗菌防臭の清潔さ\u003c\/p\u003e\n            \u003ca href=\"https:\/\/brain-sleep.com\/products\/haramaki\" class=\"related__btn\" target=\"_blank\"\u003e詳しくはこちら\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"last animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n    \u003cdiv class=\"last__bg fadeInUpShort animated\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_last_bg_model.webp\" alt=\"\" width=\"2000\" height=\"1122\" class=\"u-pc\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_last_bg_model_sp.webp\" alt=\"\" width=\"750\" height=\"902\" class=\"u-sp\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"last__logo\"\u003e\n      \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_awakenyourpossibility.webp\" alt=\"\" width=\"624\" height=\"318\"\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"last__txt\"\u003e着用するだけで整う、\u003cbr\u003eリカバリーソックス\u003c\/p\u003e\n  \u003c\/section\u003e\n\n\u003c!--   \u003csection class=\"other__title\" id=\"other\"\u003e\n      \u003cdiv class=\"section__title animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\"\u003e\n          \u003ch2 class=\"section__title__text fadeInUpShort animated\"\u003e\n              \u003cspan\u003eRECOMMENDED SELECTION\u003c\/span\u003e睡眠の質を高めるオススメ商品\n          \u003c\/h2\u003e\n      \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003csection class=\"other__pillow animatedParent animateOnce\" data-sequence=\"500\" data-offset=\"300\"\u003e\n      \u003cdiv class=\"other__pillow__inner fadeInUpShort animated\"\u003e\n          \u003ch3 class=\"other__pillow__text__sub__title u-sp\"\u003e速く、深く、脳が眠る。\u003cbr\u003e明日のパフォーマンスを目覚めさせる。\u003c\/h3\u003e\n          \u003cdiv class=\"other__pillow__vimeo\"\u003e\u003cvideo class=\"lozad\" width=\"1920\" height=\"1080\" style=\"aspect-ratio:1920\/1080\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/473c0a16e10948f288655ba4c32ab483.mp4\" preload=\"none\" autoplay loop muted playsinline\u003e\u003c\/video\u003e\u003c\/div\u003e\n          \u003cdiv class=\"other__pillow__text\"\u003e\n              \u003cdiv class=\"other__pillow__text__title\"\u003e\n                  \u003ch2 class=\"other__pillow__text__title__logo\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_wear_thermocontrol_other_pillow_logo.webp\" alt=\"BRAIN SLEEP PILLOW\" width=\"200\" height=\"63\"\u003e\u003c\/h2\u003e\n                  \u003cp class=\"other__pillow__text__title__name\"\u003eブレインスリープ ピロー\u003c\/p\u003e\n              \u003c\/div\u003e\n              \u003ch3 class=\"other__pillow__text__sub__title\"\u003e速く、深く、脳が眠る。\u003cbr\u003e明日のパフォーマンスを目覚めさせる。\u003c\/h3\u003e\n              \u003ca href=\"https:\/\/brain-sleep.com\/products\/pillow\" class=\"other__pillow__text__sub__more\"\u003e詳しく見る\u003c\/a\u003e\n          \u003c\/div\u003e\n      \u003c\/div\u003e\n  \u003c\/section\u003e\n  \u003cdiv class=\"other__col2\"\u003e\n      \u003csection class=\"other__col2__item animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\" id=\"other__comforterpwex\"\u003e\n          \u003ch3 class=\"other__conforter__text__sub__title u-sp\"\u003e羽毛を超越した\u003cbr\u003e極暖掛け布団\u003c\/h3\u003e\n          \u003cdiv class=\"other__col2__item__comforterpwex__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_comfoter_pwex.webp\" alt=\"\" width=\"503\" height=\"381\"\u003e\u003c\/div\u003e\n          \u003cdiv class=\"other__col2__item__inner fadeInUpShort animated\"\u003e\n              \u003cdiv\u003e\n                  \u003ch2 class=\"other__col2__item__logo other__col2__item__comforterpwex__logo\"\u003e\n                    \u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_comfoter_pwex_logo.webp\" alt=\"BRAIN SLEEP COMFORTER PERFECT WARM EX\" width=\"391\" height=\"97\"\u003e\n                  \u003c\/h2\u003e\n                  \u003cp class=\"other__col2__item__logotext\"\u003eブレインスリープ コンフォーター \u003cbr class=\"u-sp\"\u003eパーフェクト ウォーム EX\u003c\/p\u003e\n              \u003c\/div\u003e\n              \u003cdiv class=\"other__col2__item__flex\"\u003e\n                  \u003cp class=\"other__col2__item__flex__desc\"\u003e羽毛を超越した\u003cbr\u003e極暖掛け布団\u003c\/p\u003e\n                  \u003ca href=\"https:\/\/brain-sleep.com\/products\/comforter_perfectwarmex\" class=\"other__more__btn other__more__btn__black\"\u003e詳しく見る\u003c\/a\u003e\n              \u003c\/div\u003e\n          \u003c\/div\u003e\n      \u003c\/section\u003e\n      \u003csection class=\"other__col2__item animatedParent animateOnce\" data-sequence=\"300\" data-offset=\"300\" id=\"other__mattressprotecterpwex\"\u003e\n          \u003ch3 class=\"other__conforter__text__sub__title u-sp\"\u003e究極に暖かい\u003cbr\u003eプロテクター\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e（ボックスシーツ）\u003c\/span\u003e\u003c\/h3\u003e\n          \u003cdiv class=\"other__col2__item__mattressprotecterpwex__img\"\u003e\u003cimg loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_mattress_protector_pwex.webp\" alt=\"\" width=\"503\" height=\"381\"\u003e\u003c\/div\u003e\n          \u003cdiv class=\"other__col2__item__inner fadeInUpShort animated\"\u003e\n              \u003cdiv\u003e\n                  \u003ch2 class=\"other__col2__item__logo other__col2__item__mattressprotecterpwex__logo\"\u003e\n                    \u003cimg class=\"u-pc\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_mattress_protector_pwex_logo.webp\" alt=\"BRAIN SLEEP MATTRESS PROTECTOR PERFECT WARM EX\" width=\"549\" height=\"92\"\u003e\n                    \u003cimg class=\"u-sp\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/other_mattress_protector_pwex_logo_sp.webp\" alt=\"\" width=\"549\" height=\"92\"\u003e\n                  \u003c\/h2\u003e\n                  \u003cp class=\"other__col2__item__logotext\"\u003eブレインスリープ マットレス プロテクター パーフェクト ウォーム EX\u003c\/p\u003e\n              \u003c\/div\u003e\n              \u003cdiv class=\"other__col2__item__flex\"\u003e\n                  \u003cp class=\"other__col2__item__flex__desc\"\u003e究極に暖かい\u003cbr\u003eプロテクター\u003cbr class=\"u-sp\"\u003e\u003cspan\u003e（ボックスシーツ）\u003c\/span\u003e\u003c\/p\u003e\n                  \u003ca href=\"https:\/\/brain-sleep.com\/products\/mattressprotector_compact_perfectwarmex\" class=\"other__more__btn other__more__btn__black\"\u003e詳しく見る\u003c\/a\u003e\n              \u003c\/div\u003e\n          \u003c\/div\u003e\n      \u003c\/section\u003e\n  \u003c\/div\u003e --\u003e\n\n  \u003csection id=\"faq\" class=\"faq js-box\"\u003e\n    \u003cdiv class=\"section__title\"\u003e\n      \u003ch2 class=\"section__title__text\"\u003e\n      \u003cspan\u003eFAQ\u003c\/span\u003eよくあるご質問\u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"faq__main\"\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e医療機器ですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003eはい、一般医療機器弾性ストッキングとして届け出しています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e段階着圧ソックスとは何ですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e足首にもっとも強い圧力がかかり、ふくらはぎや太ももへかけて圧力が段階的に弱くなるように設計されたソックスの事をいいます。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e着圧のhPa(ヘクトパスカル)とは何ですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003ehPa(ヘクトパスカル)は、圧力を示す国際単位です。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e就寝時に着用して眠ってもよいですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e睡眠用に設計されていますので、就寝時に着用できます。窮屈にならない程度の弱めな着圧設計です。また、睡眠中に熱放散をすることが出来る設計になっています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e日中の活動時も使用できますか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e日中の使用は可能ですが、睡眠用の弱めな着圧設計やオープントゥ（つま先無しタイプ）など睡眠用の設計になっています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e折り返して着用してもよいですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e上のほうを折り曲げたりすると、その部分が二重、三重になってしまい余計にその部分が強くしめつけられることになりますので、折り返して使用しないでください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003eサイズはどう選べばよいですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003eSとMの２サイズをご用意しております。ページ上の対応サイズガイドを参考にご自分のサイズをお選びください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e洗濯できますか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003eはい、家庭洗濯機で洗濯可能です。白・淡色製品と分けて洗濯ネットに入れて洗濯してください。また、漂白剤（塩素系・酸素系）の使用はお避けください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003eタンブル乾燥はできますか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e生地の伸縮をなくしますので、タンブル乾燥やアイロン等での強制乾燥はお避けください。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"faq__item\"\u003e\n        \u003ch3 class=\"faq__item__question\"\u003e産地はどこですか？\u003c\/h3\u003e\n        \u003cdiv class=\"faq__item__answer\"\u003e\n          \u003cp class=\"faq__item__answer__text\"\u003e日本国内の歴史のある靴下専門工場で生産しています。\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n\u003c\/div\u003e\n\n\u003clink rel=\"stylesheet\" media=\"print\" onload=\"this.media='all'\" href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_all_v1.css?06\"\u003e\n\n\u003cscript defer src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/products_socks_all_v1.js\"\u003e\u003c\/script\u003e\n\n\u003cstyle\u003e\n  .spec__item__desc__text__content__title,\n  .technology__link__lists__title,\n  .technology__item__desc__text__content__title {\n    font-family: \"游ゴシック体\",YuGothic,\"Yu Gothic M\",\"游ゴシック Medium\",\"Yu Gothic Medium\",\"Yu Gothic Pr6N M\",sans-serif;\n    visibility: visible!important;\n  }\n\u003c\/style\u003e\n\u003cscript type=\"text\/javascript\" src=\"https:\/\/cdn.jsdelivr.net\/npm\/lozad\/dist\/lozad.min.js\"\u003e\u003c\/script\u003e\n\u003cscript\u003e\ndocument.addEventListener('DOMContentLoaded', function() {\n  const observer = lozad(); \/\/ すべての [data-src] 要素を対象\n  observer.observe();\n});\n\u003c\/script\u003e\n","brand":"株式会社ブレインスリープ","offers":[{"title":"S","offer_id":47870983405790,"sku":"W0016A1-SMBK","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"M","offer_id":47870983438558,"sku":"W0016A1-MEBK","price":7700.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0687\/0610\/7614\/files\/thumbnail_socks_recovery_01.webp?v=1759730956"}],"url":"https:\/\/brain-sleep.com\/zh-hant\/collections\/thanks_page_travel.oembed","provider":"BRAIN SLEEP OFFICIAL SITE","version":"1.0","type":"link"}