{"title":"Produced by KANAKA.","description":"\u003cstyle\u003e\n  .desktop {\n    display: none;\n  }\n  .mobile {\n    display: block;\n  }\n  .container {\n    width: calc(100% + 20px);\n    margin-left: calc(((100vw - 100%) \/ 2) * -1);\n    margin-right: calc(((100vw - 100%) \/ 2) * -1);\n    padding: 0 !important;\n    }\n  .spacer {\n    display: block !important;\n    height: 32px;\n    width: 100%;\n  }\n  @media screen and (min-width: 768px) {\n    .desktop {\n      display: block;\n    }\n    .mobile {\n      display: none;\n    }\n    .container {\n      max-width: 720px;\n      margin: 0 auto;\n      padding: 0 auto;\n    }\n    .spacer {\n      display: block !important;\n      height: 48px;\n      width: 100%;\n    }\n  }\n  @media screen and (min-width: 1024px) {\n    .desktop {\n      display: block;\n    }\n    .mobile {\n      display: none;\n    }\n    .container {\n      max-width: 1400px;\n      margin: 0 auto;\n      padding: 0 auto;\n    }\n    .spacer {\n      display: block !important;\n      height: 64px;\n      width: 100%;\n    }\n  }\n  img,\n  video {\n    object-fit: contain;\n    width: 100%;\n    height: auto;\n    margin: 0px 0 !important;\n    display: block;\n  }\n  .youtube {\n    max-width: 840px;\n    aspect-ratio: 16 \/ 9;\n    margin: 30px auto;\n  }\n  .youtube iframe {\n    width: 100%;\n    height: 100%;\n  }\n  .noto-sans-jp {\n    font-family: \"Noto Sans JP\", sans-serif;\n    font-optical-sizing: auto;\n    font-weight: 400;\n    font-style: normal;\n    word-break: auto-phrase;\n  }\n  .source-serif-4 {\n    font-family: \"Source Serif 4\", serif;\n    font-optical-sizing: auto;\n    font-weight: 600;\n    font-style: normal;\n    font-size: xx-large;\n    word-break: auto-phrase;\n  }\n  .menu {\n    background-color: #ccc;\n    padding: 10px;\n    margin: 10px 10px;\n  }\n  .menu a {\n    color: #333;\n    text-decoration: none;\n    margin-right: 10px;\n    display: inline-block;\n  }\n  .badge {\n    width: 150px;\n    height: auto;\n    margin: 0%;\n    background-color: #FF00A1;\n    font-family: \"Noto Sans\", sans-serif;\n    color: #FFFFFF;\n    text-align: center;\n    font-size: smaller;\n    padding: 2px 20px 2px 20px;\n    vertical-align:baseline;\n  }\n  .button {\n    background-color: #444;\n    border: none;\n    color: white;\n    padding: 10px 30px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 16px;\n    margin: 4px 2px;\n    cursor: pointer;\n    border-radius: 8px;\n  }\n  .button a {\n    color: white;\n    text-decoration: none;\n  }\n  .button a :hover {\n    color: #ccc;\n    text-decoration: none;\n  }\n  \/* 基準コンテナ（親） *\/\n  .grid {\n    \/* 12カラムグリッド：1:2 のような倍率指定をしやすい *\/\n    display: grid;\n    grid-template-columns: repeat(12, minmax(0, 1fr));\n    gap: 0px;\/* 画像間の空き幅を調整（任意） *\/\n    grid-auto-flow: dense; \/* 空きを詰めたいときに有効（任意） *\/\n  }\n\n  \/* 子の“幅倍率”をカラムスパンで表現（1:2 なら 4:8 カラムなど） *\/\n  .item.span-2 { grid-column: span 2; } \/* = 1\/6 幅 *\/\n  .item.span-3 { grid-column: span 3; } \/* = 1\/4 幅 *\/\n  .item.span-4 { grid-column: span 4; } \/* = 1\/3 幅 *\/\n  .item.span-8 { grid-column: span 8; } \/* = 2\/3 幅 *\/\n  .item.span-6 { grid-column: span 6; } \/* = 1\/2 幅 *\/\n  .item.span-12 { grid-column: span 12; } \/* = 3\/3 幅 *\/\n\n  .item { \n    overflow: hidden;\n  }\n  \/* コンテナの縦横比（幅-高）を指定、画像のアスペクト比に合わせると良い *\/\n  .item.ratio-3-4   { aspect-ratio: 3 \/ 4; }\n  .item.ratio-6-4   { aspect-ratio: 6 \/ 4; }\n  .item.ratio-1-1   { aspect-ratio: 1 \/ 1; }\n  .item.ratio-2-1   { aspect-ratio: 2 \/ 1; }\n  .item.ratio-4-3   { aspect-ratio: 4 \/ 3; }\n  .item.ratio-3-2   { aspect-ratio: 3 \/ 2; }\n  .item.ratio-16-9  { aspect-ratio: 16 \/ 9; }\n\n  .item \u003e img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    display: block;\n  }\n\n  \/* レスポンシブ（例）: スマホは1カラム、タブレット以上で12カラム *\/\n  @media (max-width: 768px) {\n    .gallery { grid-template-columns: 1fr; }\n    .item { grid-column: auto; } \/* 全幅 *\/\n  }\n  @media (min-width: 768px) {\n    .gallery { grid-template-columns: repeat(12, minmax(0, 1fr)); }\n  }\n\n.youtube video {\n  width: 100%;\n  height: 100%;\n  display: block;\n  object-fit: cover; \n}\n\/* 高さを揃える：行の高さを固定（PC）*\/\n.desktop .grid .item{\n height: auto; \/* 修正 *\/\n  overflow: hidden;\n}\n\n\/*高さを揃える：行の高さを固定（SP）*\/\n.mobile .grid .item{\n  height: clamp(180px, 48vw, 320px); \n  overflow: hidden;\n}\n\n\/* a と img を枠いっぱいに（余白なしにするのに必須） *\/\n.grid .item \u003e a{\n  display: block;\n  width: 100%;\n  height: 100%;\n}\n\n\/* 画像は枠にフィット：余白なし（トリミングあり） *\/\n.grid .item img{\n    width: 100%;\n  height: auto; \/* 修正 *\/\n  object-fit: contain; \/* 修正 *\/\n  display: block;\n}\n@media screen and (max-width: 768px) {\n  h1 {\n    font-size: 1.3rem !important;\n  }\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"container\"\u003e\n\n  \u003cdiv\u003e\n    \u003cimg class=\"desktop\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-1740x900_header.jpg?v=1775535334\" alt=\"\" media=\"(min-width: 768px)\"\u003e\n    \u003cimg class=\"mobile\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-750x600_header.jpg?v=1775535391\" alt=\"\" media=\"(max-width: 768px)\"\u003e\n  \u003c\/div\u003e\n\n    \u003c!-- \u003cdiv style=\"text-align: center;\"\u003e\n \u003cp class=\"source-serif-4\"\u003e\n      RVCA × EVERLAST COLLECTION\n    \u003c\/p\u003e\n  \u003c\/div\u003e--\u003e\n  \u003cdiv class=\"spacer\"\u003e\u003c\/div\u003e\n  \u003cdiv style=\"margin: 0 5%;\"\u003e\n    \u003cp class=\"noto-sans-jp\"\u003e\n     \u003c\/p\u003e\n\u003ccenter\u003e\n\u003ch1\u003eProduced by \u003ca href=\"https:\/\/www.instagram.com\/kanakastella\/\"\u003eKANAKA​.\u003c\/a\u003e​\u003c\/h1\u003e\n\u003cbr\u003e\n      Make Every Day Active.\u003c\/center\u003e​\u003cbr\u003e\n    \n  \u003c\/div\u003e\n\n    \u003cdiv\u003e\n    \u003cdiv class=\"youtube\"\u003e\n      \u003cvideo class=\"lp-video\" controls playsinline webkit-playsinline preload=\"metadata\"\u003e\n    \u003csource src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/15ad8d4173324568b0678e1a51b90ced.mp4\"\u003e\u003c\/video\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"spacer\"\u003e\u003c\/div\u003e\n  \n  \u003cdiv class=\"desktop\"\u003e\n    \u003cdiv class=\"grid\"\u003e\n      \u003cdiv class=\"item span-4\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-01.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n         \u003cdiv class=\"item span-4\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-02.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-4\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-03.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-4\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-04.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-4\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-05.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-4\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-06.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n  \u003cdiv class=\"mobile\"\u003e\n    \u003cdiv class=\"grid\"\u003e\n      \u003cdiv class=\"item span-6\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-01.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n         \u003cdiv class=\"item span-6\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-02.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-6\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-03.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-6\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-04.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-6\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-05.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"item span-6\"\u003e\n        \u003ca href=\"\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/roxy-collections-kanaka-lp-06.jpg?v=1775186776\"\u003e\n        \u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!--\n  \u003cdiv\u003e\n    \u003cdiv class=\"youtube\"\u003e\n      \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/ZMXmXGHrfBE\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"\u003e\n      \u003c\/iframe\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"spacer\"\u003e\u003c\/div\u003e\n\n  \u003cdiv\u003e\n    \u003cp class=\"source-serif-4\"\u003e\n      Kento's comment\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv\u003e\n    \u003cp class=\"noto-sans-jp\"\u003e\n      忙しいシティライフから逃れるため（いい意味で現実離れ）のワードローブとして、\u0026quot;VACATION FROM LIFE\u0026quot;というテーマのもとスケーター目線も取り入れ、ディテールや素材にこだわりました。スケート時にも、リラックス時にも、さらにはクリーンなコーディネートシーンでも着用できる、ニュートラルでシンプルなスタイルに仕上げました。\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n  --\u003e\n\u003c\/div\u003e","products":[{"product_id":"rbr262678c","title":"【ROXY ACTIVE Produced by KANAKA】KANAKA 26SS BRA \u003c2026年夏モデル\u003e","description":"\u003cp\u003e■DESIGN\u003cbr\u003eバックスタイルのダブルクロスストラップが印象的なブラトップ。襟ぐりは安心感のあるラウンドネックに仕上げつつ、フロントはアメリカンスリーブに。肩まわりの可動域を広げた設計で、大きな動きも妨げません。フロントアンダーのROXYハートと、バックの立体シリコンロゴが程よいアクセントを添えています。\u003cbr\u003e\u003cbr\u003e■STYLING\u003cbr\u003e背中のデザインが美しく、バックオープンタイプのトップスとのレイヤードに最適です。ヘルシーな肌見せを楽しみながら、ヨガやトレーニングはもちろん、ビーチアクティビティでも映える一着。ハイウエストのレギンスと合わせれば、よりトレンド感のあるスポーティーな着こなしを楽しめます。\u003cbr\u003e\u003cbr\u003e■FABRIC\u003cbr\u003eしなやかにフィットするストレッチ性の高い素材を使用。優れたUVカット機能（UPF50+）とEASY DRY仕様を兼ね備えた水陸両用素材で、汗をかくシーンから水辺まで、あらゆる環境で快適な着用感をキープします。\u003cbr\u003e\u003cbr\u003eProduced by KANAKA\u003c\/p\u003e","brand":"Roxy","offers":[{"title":"BGY \/ S","offer_id":51983332081945,"sku":"RBR262678C-BGY-S","price":5082.0,"currency_code":"JPY","in_stock":true},{"title":"BGY \/ M","offer_id":51983332114713,"sku":"RBR262678C-BGY-M","price":5082.0,"currency_code":"JPY","in_stock":true},{"title":"BRN \/ S","offer_id":51983332147481,"sku":"RBR262678C-BRN-S","price":5082.0,"currency_code":"JPY","in_stock":true},{"title":"BRN \/ M","offer_id":51983332180249,"sku":"RBR262678C-BRN-M","price":5082.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/RBR262678C_BGY_1.jpg?v=1774919617"},{"product_id":"rpt262679c","title":"【ROXY ACTIVE Produced by KANAKA】KANAKA 26SS LEGGINGS \u003c2026年夏モデル\u003e","description":"\u003cp\u003e■DESIGN\u003cbr\u003e身体のラインに自然に馴染む、ノンゴム仕様のウエストが特徴です。締め付け感を軽減しながらもしっかりフィットし、アクティブな動きをサポート。ヒップラインの切り替えが腰まわりをすっきり見せ、さりげないスタイルアップを叶えます。右サイドには便利なポケット付き。左腰のROXYハートと、バックウエストの立体的なシリコンロゴがデザインのアクセントになっています。\u003cbr\u003e\u003cbr\u003e■STYLING\u003cbr\u003e機能的かつ洗練されたシルエットで、すっきりとした腰まわりのデザインは、ショート丈のトップスとも相性抜群。水陸両用なので、ヨガやランニングはもちろん、ビーチやプールサイドでのアクティブなスタイリングにも最適です。\u003cbr\u003e\u003cbr\u003e■FABRIC\u003cbr\u003e優れたUVカット機能（UPF50+）と、吸汗速乾性に優れたEASY DRY仕様を兼ね備えた水陸両用素材。汗をかくスポーツシーンから水辺のアクティビティまで、常に快適な履き心地をキープします。\u003cbr\u003e\u003cbr\u003eProduced by KANAKA\u003c\/p\u003e","brand":"Roxy","offers":[{"title":"BGY \/ S","offer_id":51983332802841,"sku":"RPT262679C-BGY-S","price":6930.0,"currency_code":"JPY","in_stock":true},{"title":"BGY \/ M","offer_id":51983332835609,"sku":"RPT262679C-BGY-M","price":6930.0,"currency_code":"JPY","in_stock":true},{"title":"BRN \/ S","offer_id":51983332868377,"sku":"RPT262679C-BRN-S","price":6930.0,"currency_code":"JPY","in_stock":true},{"title":"BRN \/ M","offer_id":51983332901145,"sku":"RPT262679C-BRN-M","price":6930.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/RPT262679C_BGY_1.jpg?v=1774919796"},{"product_id":"rzp262680c","title":"【ROXY ACTIVE Produced by KANAKA】KANAKA 26SS STAND COLLAR ZIP UP \u003c2026年夏モデル\u003e","description":"\u003cp\u003e■DESIGN\u003cbr\u003e洗練された印象のモックネックと立体的な切り替えが特徴のフルジップジャケット。袖口にはサムホールを配し、袖のずれ上がりを防止します。背面ヨークのベンチレーションにより通気性を確保しています。上下から開閉できる逆開ファスナー仕様で、シルエットのアレンジも自在です。\u003cbr\u003e\u003cbr\u003e■STYLING\u003cbr\u003e逆開ファスナーを活かしてインナーを見せる着こなしもおすすめ。機能的なサイドポケット付きで実用性も高く、アクティブな日の移動着としてもスマートに決まります。\u003cbr\u003e\u003cbr\u003e■FABRIC\u003cbr\u003eストレッチ性に優れた高機能素材を採用。UPF50+の紫外線カット機能に加え、吸汗速乾性に優れたEASY DRY仕様の水陸両用タイプです。日差しが気になる屋外から水辺のアクティビティまで、幅広く対応します。\u003cbr\u003e\u003cbr\u003eProduced by KANAKA\u003c\/p\u003e","brand":"Roxy","offers":[{"title":"BGY \/ S","offer_id":51983335981337,"sku":"RZP262680C-BGY-S","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"BGY \/ M","offer_id":51983336014105,"sku":"RZP262680C-BGY-M","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"BRN \/ S","offer_id":51983336046873,"sku":"RZP262680C-BRN-S","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"BRN \/ M","offer_id":51983336079641,"sku":"RZP262680C-BRN-M","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"WHT \/ S","offer_id":51983336112409,"sku":"RZP262680C-WHT-S","price":7700.0,"currency_code":"JPY","in_stock":true},{"title":"WHT \/ M","offer_id":51983336145177,"sku":"RZP262680C-WHT-M","price":7700.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0840\/7033\/4745\/files\/RZP262680C_BGY_2.jpg?v=1774920086"}],"url":"https:\/\/boardriders.co.jp\/collections\/roxy-collections-kanaka.oembed","provider":"Boardriders Japan online store","version":"1.0","type":"link"}