18,000円以上で通常配送無料

カスタマーサービスへようこそ

Title:
Q&Aの中から役立つ回答をお探しの方は、こちらでご覧いただけます。下のオプションからトピックをクリックして、気になる疑問を解決してください。

よくある質問

オンラインの注文状況は今どうなっていますか?

注文情報の入力
注文確認Eメールと請求書に記載されているご注文情報を入力してください。
*入力必須項目
注文番号 *
姓 *
$(this).closest('#orderTrackingFormConfigWrapper').find('.js-orderTrackingFormConfig') .formValidation( { autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[orderTrackingFormDefinition_orderCode]': { trigger: 'blur', validators: { callback: { callback: function(value, validator, $field) { var messages = []; var messagesEN = []; var errorOccured = false; if ($field.attr('regexCheckDisabled') === 'true') { return true; } if (!value.trim().match(new RegExp('^[a-zA-Z0-9]*$', ''))) { messages.push('注文番号は英数字のみで入力してください。'); messagesEN.push('注文番号は英数字のみで入力してください。'); errorOccured |= true; } if (errorOccured) { return { valid: false, message: messages.join('<br/>'), message_en: messagesEN } } else { return true; } } }, notEmpty: { message: '注文番号を入力してください。', message_en: '注文番号を入力してください。' }, } }, 'values[orderTrackingFormDefinition_lastName]': { trigger: 'blur', validators: { callback: { callback: function(value, validator, $field) { var messages = []; var messagesEN = []; var errorOccured = false; if ($field.attr('regexCheckDisabled') === 'true') { return true; } if (!value.trim().match(new RegExp('^[. \\u3000\'\\-a-zA-Z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0370-\\u03FF\\u1F00-\\u1FFF\\u0400-\\u052F\\u1C80-\\u1C8F\\u2DE0-\\u2DFF\\uA640-\\uA69F\\u4E00-\\u9FFF\\u3400-\\u4DBF\\u3040-\\u30FF\\uF900-\\uFAFF\\uFF66-\\uFF9F\\u1100-\\u11FF\\u3130-\\u318F\\uA960-\\uA97F\\uAC00-\\uD7FF\\u3005\\u3006\\u3024\\u3029\\u3031-\\u3035\\u0E00-\\u0E7F]*$', ''))) { messages.push('文字のみを入力してください'); messagesEN.push('文字のみを入力してください'); errorOccured |= true; } if (!value.trim().match(new RegExp('(?:^$)|(?:^.*[a-zA-Z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0370-\\u03FF\\u1F00-\\u1FFF\\u0400-\\u052F\\u1C80-\\u1C8F\\u2DE0-\\u2DFF\\uA640-\\uA69F]{2}.*$)|(?:^.*[^a-zA-Z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0370-\\u03FF\\u1F00-\\u1FFF\\u0400-\\u052F\\u1C80-\\u1C8F\\u2DE0-\\u2DFF\\uA640-\\uA69F. \\u3000\'\\-].*$)', ''))) { messages.push('2文字以上にしてください'); messagesEN.push('2文字以上にしてください'); errorOccured |= true; } if (errorOccured) { return { valid: false, message: messages.join('<br/>'), message_en: messagesEN } } else { return true; } } }, notEmpty: { message: '姓を入力してください。', message_en: '姓を入力してください。' }, stringLength: { message: 'この項目の入力可能文字数は0〜35字です', message_en: 'The number of characters for this field must be between 0 and 35', min: 0 , max: 35 }, } } } } ) .on('success.field.fv', function() { /* note: we need to check if there is an error in the form, as the plugin does a validation on field level. Validating the whole form on blur of a field is no option, as the customer does not want to see error messages on all fields when entering one field. In case of an error on at least one field we disable the submit button manually */ var $form = $(this).closest('form'); if ($form.find('.form-group.has-error').length > 0) { var $button = $form.find('.js-button'); if (!$button.hasClass('disabled')) { $button.addClass('disabled'); } } }) .on('err.field.fv', function(e, data) { /* * On error field validation, enable submit button. * Source: https://old.formvalidation.io/examples/enabling-submit-button/ */ data.fv.disableSubmitButtons(false); if(data.element.closest('.form-combo-molecule').length){ /* Get the messages of field */ var messages = data.fv.getMessages(data.element); /* Get the error message content of the field */ var errorContent = data.element.closest('.form-combo-molecule').find('.errors'); /* Get the hidden error message of the field */ var errorField = errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"][style="display: none;"]'); /* Loop over the messages */ for (var i in messages) { if (errorField[1] == undefined) { var newErrorContainer = document.createElement("small"); $(newErrorContainer).attr("class", "swa-form-input__error-message swa-headline-sans--supertiny"); $(newErrorContainer).attr("data-field", data.field); $(newErrorContainer).attr("data-fv-validator", "callback"); $(newErrorContainer).attr("data-fv-for", $(data.element[0]).attr("name") ); $(newErrorContainer).attr("data-fv-result", "INVALID"); $(newErrorContainer).attr("data-tracked", "true"); $(newErrorContainer).html(messages[i]); if (errorContent.text().includes(messages[i])) { $(newErrorContainer).hide(); } errorContent.append(newErrorContainer); } } } }) .on('success.field.fv', function(e, data) { /* * On success field validation, enable submit button. * Source: https://old.formvalidation.io/examples/enabling-submit-button/ */ data.fv.disableSubmitButtons(false); /* Remove the field messages */ $errorContent = data.element.closest('.form-combo-molecule').find('.errors'); $errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"]').remove(); $errorContent.find('.swa-form-input__error-message[data-fv-result="INVALID"]').removeAttr("style"); }) .on('success.form.fv', function() { var formId = 'orderTracking'; if (!formId || formId === 'cfRequest' || formId === 'cfResponse') { formId = 'orderTrackingFormDefinition'; } ACC.tracking.pushFormSubmit(formId); }); var replaceDatePatternWithValue = function(mandatory, fieldConfigCode, fieldConfigPattern) { var date = fieldConfigPattern.toUpperCase(); var year = $("#" + fieldConfigCode + "_year").val(); var month = $("#" + fieldConfigCode + "_month").val(); var day = $("#" + fieldConfigCode + "_day").val(); date = date.replace(/[Y]+/, year); date = date.replace(/[M]+/, month); date = date.replace(/[D]+/, day); var hiddenDateField = $('.js-' + fieldConfigCode + '_hidden'); if (mandatory) { hiddenDateField.val(date); } else { hiddenDateField.val(date == "" ? "" : date); } }; var triggerFormValidation = function(fieldId, mandatory, fieldCode, dateFormat) { replaceDatePatternWithValue(mandatory, fieldCode, dateFormat); $('.js-fieldCode').formValidation('revalidateField', 'values[fieldCode_'+ fieldId + ']'); }; var removeDateMoleculeError = function(molecule) { if(molecule.hasClass('has-error')){ molecule.removeClass('has-error'); molecule.find('.help-block').find('span').remove(); } };

オンラインで注文した商品をキャンセルできますか?

スワロフスキーでは、ご注文いただいた商品を迅速かつ効率的に配送するために、全力で対応しております。ご注文のキャンセルは、ご注文確定後30分以内(目安)であれば処理が可能な場合がございます。
ご注文をキャンセルするには、お客様のオンラインアカウントにログインし、注文履歴からキャンセルしたい注文を検索し、「注文をキャンセルする」というボタンをクリックしてください。キャンセルが可能な場合には、キャンセル確認画面が表示されます。 
注文キャンセルのボタンがグレーで表示されている場合は、ご注文の変更やキャンセルはできません。

ログインせずにゲストとしてご注文いただいた場合は、ご注文確認メールを受信してから15分以内にお電話(営業時間内)でご連絡ください。お客様からのリクエストに沿えるよう、カスタマーサービスが対応いたします。

ご注文のキャンセルができない場合は、返品ポリシーに準じて、不要な商品としてご返品いただけます。また、配送会社のドライバーへ受取拒否の意思表示をしていただくことも可能です。受取拒否をされた場合は、お届け商品は配送会社からオンライン返品センターへ返送されます。受取拒否の際にかかる転送料金をお客様にご負担いただくことはありません。

オンライン返品センターで返品処理が完了次第、返品確認メールがを送信され、ご注文時と同じお支払方法にて商品代金を返金いたします。

オンラインで注文した商品はどのように返品できますか?

Sometimes it’s just not right, if your item wasn’t what you expected, don’t worry, you have up to 14 days after receipt to return the item and for Swarovski Created Diamonds you have 30 days. 
 
Return your order as follows:

Step 1:
Put the item(s) you wish to return inside its original packaging material and in its original carton. Add IGI certificate for Swarovski Created Diamonds.
Add the return form or a memo with the order number.
The return will be processed faster with the order number attached to the return item.

Step 2:
Contact our customer service via customer_service_jp@swarovski.com and specify the order number, the number of return item(s) and the return reason.

Return Reasons:
1 Description on the website was not accurate
2 Ordered more than one size
3 Style not as expected
4 Damaged
5 Dislike colour
6 Quality not as expected
7 Delivery issue
8 Fit or size
10 Incorrect product
11 Product uncomfortable

Step 3: 
Please use the following address for returns:

Swarovski Online Return Center
World Supply Narita
Prologis Park Narita 1 BLDG A,
78-7 Minamisanrizuka, Narita-shi
Chiba, 286-0113
JAPAN

Step 4: 
Take your return to your local post office or courier and return in a traceable way. Please keep the receipt.

Step 5: 
Once we receive the returned item(s), the order number, and the return reason, we will refund the corresponding amount on the same payment method used to place the order.

NOTE:
If you received the item(s) as a gift, the sender will be refunded automatically.
Please bear in mind it is not possible to replace or exchange products bought online. Unwanted items would need to be returned per our returns policy. Please place a new online order for the correct product you need.
Once your online return has been processed, you will receive a return confirmation email and the refund will be processed.
Shipping fee is covered by customer unless the return is due to damage or quality issue. 
We will refund the corresponding amount of the returned item.


 

Czy mogę wymienić zakupione produkty?

Nie ma możliwości wymiany produktów zakupionych online i zwróconych pocztą. Zwrotu pieniędzy za wszystkie zwrócone produkty dokonamy za pośrednictwem metody płatności wybranej podczas składania zamówienia. Złóż nowe zamówienie online na właściwy produkt.
Lub — w przypadku bezpośredniej wymiany na inny rozmiar — złóż zamówienie na ten sam produkt, w zależności od jego dostępności. Odwiedź najbliższy sklep (nie dotyczy punktów działających z tytułu koncesji)

Czy międzynarodowa wymiana towaru jest dozwolona?

Z różnych powodów (w tym na przykład ze względu na odmienność kolekcji biżuterii w USA, Azji, Europie i naszego segmentu Travel Retail, różne podatki, inną strukturę cen, lokalne wymogi prawne, powody logistyczne) firma Swarovski nie oferuje międzynarodowej wymiany towaru ani polityki zwrotu pieniędzy. W związku z tym nie jesteśmy w stanie wymienić lub zamienić produktów zakupionych za granicą ani zwrócić ich kosztów.

Czy mogę zmienić adres dostawy?

Kiedy przesyłka jest w transporcie, zmiana adresu lub daty dostawy nie zawsze jest możliwa. W portalu firmy kurierskiej może istnieć możliwość ustalenia szczegółów dostawy zamówienia zgodnie ze zmienionymi preferencjami.

Jak sprawdzić dostępność produktu?​

Nuestra disponibilidad en línea se indica en el botón «Añadir a la cesta». Si el botón no aparece, significa que no tenemos existencias del producto en ese momento.

En caso de que los productos no estén disponibles, puedes optar por recibir una notificación si el producto vuelve a estar disponible. Pulsa en el botón «Notificarme» en la página de información del producto e introduce tu dirección de correo electrónico.

Para comprobar la disponibilidad en tienda, sigue las siguientes instrucciones:

1) Selecciona el producto que quieres en nuestra tienda en línea
2) En la página de información del producto, debajo del botón «Añadir a la cesta», selecciona «Comprobar la disponibilidad en la tienda»
3) Añade tu ubicación actual o la ubicación elegida y listo: podrás navegar por las opciones que se muestren.

¿Qué talla debo comprar?

En Swarovski, sabemos que encontrar la talla correcta de anillo, collar o pulsera es importante. Para ayudarte a encontrar la talla correcta, hemos creado esta útil guía.

¿Por qué mi compra no cumple las condiciones establecidas para la promoción?

Si tu último pedido no se ha beneficiado de la promoción, comprueba los términos y condiciones para garantizar que el artículo que has pedido no estaba excluido de la promoción.

Si crees que el artículo no formaba parte de las exclusiones, comprueba que el pedido se hizo durante el período de validez de la promoción.

Si necesitas más ayuda, ponte en contacto con nuestro servicio de atención al cliente.

¿Dónde puedo encontrar información sobre la promoción actual?

Swarovski hace promociones de descuento durante todo el año. Si quieres estar al día, te recomendamos que te suscribas a nuestra newsletter.

¿Se puede reparar mi artículo?

Lleva el artículo, junto con un comprobante de compra, a tu tienda Swarovski más cercana. Allí estarán encantados de ayudarte y valorar el producto. ​

Si se observa algún defecto que esté cubierto por la garantía, podrás cambiarlo o repararlo. ​

Si el defecto no está cubierto por la garantía, te pueden ofrecer la reparación con un coste adicional.

Puedes encontrar tu tienda más cercana en nuestro buscador: www.swarovski.com/store-finder/

Recuerda que, aunque no presentes ningún comprobante de compra o el artículo ya esté fuera del período de garantía, podemos ofrecerte una reparación por un coste adicional.

 

¿Aún no has encontrado la solución?