senpais.jp Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://senpais.jp/
Effective URL: https://senpais.jp/
Submission: On November 09 via api from US — Scanned from JP

Form analysis 3 forms found in the DOM

POST /cart

<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
  <div class="grid grid-cols-1 gap-gutter bg-border">
    <template x-for="(item, index) in state.items" :key="item.key">
      <div class="flex py-4 section-x-padding transition bg-primary-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
        <template x-if="!(item.featured_image.url === null)">
          <div class="flex-shrink-0 w-10 md:w-20 mr-4">
            <a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
                      <img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
                      <pre x-text="item.featured_image.src"></pre>
                    </a>
          </div>
        </template>
        <div class="flex-auto">
          <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
          <template x-if="item.variant_title">
            <p class="text-sm" x-text="item.variant_title"></p>
          </template>
          <template x-if="item.selling_plan_allocation">
            <p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
          </template>
          <template x-for="property in flatProperties(item.properties)" :key="property.name">
            <p class="text-sm">
              <span x-text="property.name"></span>: <span x-text="property.value"></span>
            </p>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="lg:hidden mt-1 text-sm text-primary-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                </li>
              </template>
            </ul>
          </template>
          <div class="flex mt-1 lg:mt-2 items-center">
            <button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
              </svg>
            </button>
            <input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
              @keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
            <button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
              </svg>
            </button>
          </div>
          <button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
            <small>Remove </small>
            <span class="visually-hidden" x-text="item.title"></span>
          </button>
        </div>
        <div class="ml-1 text-right">
          <template x-if="item.line_level_discount_allocations.length">
            <div>
              <span class="visually-hidden">Regular price</span>
              <del class="line-through" x-html="formatMoney(item.original_price)"></del>
              <span class="visually-hidden">Sale price</span>
              <span class="" x-html="formatMoney(item.final_line_price)"></span>
            </div>
          </template>
          <template x-if="!item.line_level_discount_allocations.length">
            <span class="" x-html="formatMoney(item.line_price)"></span>
          </template>
          <template x-if="item.unit_price_measurement">
            <div class="text-xs">
              <span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
              <span x-text="item.unit_price_measurement.reference_unit"></span>
            </div>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="hidden lg:block mt-1 text-sm text-primary-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                </li>
              </template>
            </ul>
          </template>
        </div>
      </div>
    </template>
  </div>
  <div class="border-t-grid border-grid-color py-4 section-x-padding">
    <label for="CartSpecialInstructions" class="text-sm"> Add a note to your order </label>
    <textarea name="note" id="CartSpecialInstructions" class="block mt-1 p-2 w-full border-text border-current text-sm bg-transparent" :class="{ 'opacity-50 cursor-wait' : noteUpdating }" x-text="state.note"
      @keyup.debounce.1000ms="keyupOnInput($event)" @change="updateNote($event)">              </textarea>
  </div>
  <div class="bottom-0 py-4 section-x-padding bg-primary-background border-t-grid border-grid-color">
    <div :class="{ 'opacity-50  cursor-wait': updating }">
      <template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
        <p class="flex justify-between text-primary-accent">
          <span class="visually-hidden">Discount</span>
          <span x-text="application.title"></span>
          <span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
        </p>
      </template>
      <p class="flex justify-between">
        <span>Subtotal</span>
        <span class="ml-2" x-html="formatMoney(state.total_price)"></span>
      </p>
      <p class="my-2 md:my-4 text-sm accent-links-primary text-right"> Tax included and shipping calculated at checkout </p>
      <div class="text-right">
        <div>
          <input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full  bg-primary-accent text-primary-accent-overlay border-text border-primary-text hover:bg-primary-text hover:text-primary-text-overlay" :disabled="updating"
            value="Check out">
        </div>
      </div>
    </div>
  </div>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="newsletter">
  <div class="lg:ml-4 lg:flex items-end">
    <label class="visually-hidden" for="Email-1627450524641ab581">Email address</label>
    <input type="email" class="placeholder-current font-body border-b-text border-current w-full block bg-transparent pb-1" name="contact[email]" id="Email-1627450524641ab581" value="" placeholder="Email address" autocorrect="off"
      autocapitalize="off">
    <button class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-primary-accent border-b-text border-primary-text  hover:border-primary-accent pb-1" type="submit" name="commit" id="Subscribe">
      <span class=" whitespace-nowrap">Subscribe&nbsp;→</span>
    </button>
  </div>
</form>

<form action="" onsubmit="LO.submit_chat(); return false;">
  <div id="lo_chat_input" style="position:relative; width: 100%; ">
    <div class="lo-fx-hr" style="height:0px; margin-bottom:0px; margin-top:0px; width:100%; border-top:1px solid #000000;border-bottom:1px solid #4f4f4f"></div>
    <div style="padding:10px;"><label for="lo_chat_textarea" style="display:none">Chat Input Box</label><textarea id="lo_chat_textarea" disabled="disabled" rows="2"
        style="color: black; background-color: rgb(255, 255, 255); border-radius: 5px; padding: 7px; height: auto; width: 100%; font-family: sans-serif; text-transform: none; resize: none;" dir="null" data-last-scroll-height="0"></textarea></div>
    <div id="lo_chat_sound_holder" style="position:absolute; right:0px; top:-25px; width:100%;">
      <div style="cursor: pointer; float:right; opacity:0.6; padding-right:10px; height:16px;" id="lo_chat_sound"><img alt="Click to mute chat sounds" src="https://d10lpsik1i8c69.cloudfront.net/graphics/sound-on-white.png"></div>
      <div id="lo_chat_status" style="padding-left:10px; font-size:11px; color:#6d6d6d"></div>
      <div style="clear:both;"></div>
    </div>
  </div>
</form>

Text Content

... SJP Official Site | Senpais.jp Skip to content
Menu
Close
 * 小売店 [retail stores]
   * 三 Melbourne Central
   * 四 Sydney Central
 * 社交 [Social]
   * インスタ Instagram
   * チクタク TikTok
 * サポート [SUPPORT]
   * ト募集 RECRUITMENT
   * 問い合わせ inquiry

 * Log in
 * Create account

 * Instagram
 * TikTok
 * Email


YOUR CART - 0 ITEMS

Close

Your cart is currently empty.

Enable cookies to use the shopping cart

:

−


Remove
Regular price Sale price
/
−

Add a note to your order

Discount

Subtotal

Tax included and shipping calculated at checkout




Close
ONLINE SHOPPING CURRENTLY CLOSED. WILL RE-OPEN FOR LIMITED COLLECTION - ONLINE
SHOPPING CURRENTLY CLOSED. WILL RE-OPEN FOR LIMITED COLLECTION - ONLINE SHOPPING
CURRENTLY CLOSED. WILL RE-OPEN FOR LIMITED COLLECTION - ONLINE SHOPPING
CURRENTLY CLOSED. WILL RE-OPEN FOR LIMITED COLLECTION -

Log in
0 items
Menu




Log in
0 items

WE ARE FASHION COMPANY MAKING LATEST DESIGN FOR YOU. EACH PRODUCT MADE WITH CARE
AND LOVE BY US. OUR COMPANY SUPPORT INDEPENDENT ARTISTS AND HAS MANY
COLLABORATION PROJECT WORKING WITH DESIGNER FROM AROUND THE WORLD.

SYDNEY SHOP STAYING OPEN NOW

[SHOP INFO] →
 * 約 About
 * 小売店 [retail stores]
 * サポート [SUPPORT]
 * 麻雀 Mahjong
 * ト募集 [Recruitment]


MAILINGLIST

know when online store is opening

Email address Subscribe →


小売店 [RETAIL STORES]

 * 三 Melbourne Central
 * 四 Sydney Central


社交 [SOCIAL]

 * インスタ Instagram
 * チクタク TikTok


サポート [SUPPORT]

 * ト募集 RECRUITMENT
 * 問い合わせ inquiry


Senpais.jp

BRING THE JOY FROM JAPAN TO YOU IN RETAIL SHOP WITH SPECIAL COLLABORATION
CLOTHING, UNIQUE GASHAPON MACHINE AND UFO CATCHER WITH SPECIAL PRIZES FROM
JAPAN. HOPE YOU LOVE IT. 



 * Instagram
 * TikTok
 * Email

© 2023, Senpais.jp.

A JOINT VENTURE OF MATSUMURA FISHWORKS AND TAMARIBUCHI HEAVY MANUFACTURING
CONCERN.



 * Choosing a selection results in a full page refresh.
 * Press the space key then arrow keys to make a selection.


×
–

undefined



Chat Input Box

Chat
Powered by