<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details &gt; summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

*,
::before,
::after {
  border-style: solid;
  border-width: 0;
}

*::placeholder {
  /* sanitize.cssã®::-webkit-input-placeholderã«å¯¾ã™ã‚‹styleã‚’overrideã™ã‚‹ */
  opacity: 1;
}

a {
  text-decoration: none;
}

:root {
  font: 100%/1.5 sans-serif;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

.container__app-components-atoms-LanguageToggle-styles__hQywY {
  position: relative;
  max-width: 400px;
  margin: 16px auto 0;
  box-sizing: border-box;
  border-top: 1px solid #DDD;
  padding-top: 14px;
  text-align: left;
}

.toggleContainer__app-components-atoms-LanguageToggle-styles__r4G3k {
  position: relative;
  width: 150px;
  margin: 0 auto;
}

.selectedLabel__app-components-atoms-LanguageToggle-styles__MPk2U {
  position: relative;
  width: 150px;
  height: 36px;
  text-align: left;
  padding-left: 35px;
  line-height: 36px;
  border: solid 1px #DDD;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  font-size: 14px;
  color: #78909C;
}

.selectedLabelActive__app-components-atoms-LanguageToggle-styles__QwZVL {
  background-color: #FFF;
}

.selectedLabel__app-components-atoms-LanguageToggle-styles__MPk2U::before {
  position: absolute;
  display: block;
  content: '';
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url(/2f221492471d32c1ac69.svg);
  background-size: 16px;
}

.selectedLabel__app-components-atoms-LanguageToggle-styles__MPk2U::after {
  position: absolute;
  display: block;
  content: '';
  top: 10px;
  right: 5px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url(/642fea9fd1dc902e0d15.svg);
  background-size: 16px;
}

.dropdownContainer__app-components-atoms-LanguageToggle-styles__XoCCA {
  position: absolute;
  left: 50%;
  margin-left: -75px;
  width: 150px;
  background-color: #FFF;
  box-shadow: 0 6px 6px 0 rgb(120 144 156 / 20%);
}

.dropdownContainerTop__app-components-atoms-LanguageToggle-styles__tY92C {
  bottom: 50px;
}

.dropdownContainerTop__app-components-atoms-LanguageToggle-styles__tY92C::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0;
  border-color: #DDD transparent transparent;
}

.dropdownContainerTop__app-components-atoms-LanguageToggle-styles__tY92C::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -9px;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0;
  border-color: #FFF transparent transparent;
}

.dropdownContainerBottom__app-components-atoms-LanguageToggle-styles__sr2Ue {
  top: 46px;
}

.dropdownContainerBottom__app-components-atoms-LanguageToggle-styles__sr2Ue::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: transparent transparent #DDD;
}

.dropdownContainerBottom__app-components-atoms-LanguageToggle-styles__sr2Ue::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: -9px;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: transparent transparent #FFF;
}

.dropdownList__app-components-atoms-LanguageToggle-styles__JoiHp {
  list-style-type: none;
}

.dropdownItem__app-components-atoms-LanguageToggle-styles__dlB3a {
  height: 36px;
  line-height: 36px;
  padding-left: 35px;
  font-size: 14px;
  color: #546E7A;
  border-top: 1px solid #DDD;
  cursor: pointer;
}

.dropdownItem__app-components-atoms-LanguageToggle-styles__dlB3a:hover {
  background-color: #F6F6F9;
}

.dropdownItem__app-components-atoms-LanguageToggle-styles__dlB3a:first-child {
  border-top: none;
}

.dropdownItemSelected__app-components-atoms-LanguageToggle-styles__Wu7S0 {
  position: relative;
  background-color: #F6F6F9;
}

.dropdownItemSelected__app-components-atoms-LanguageToggle-styles__Wu7S0::before {
  content: '';
  display: block;
  position: absolute;
  left: 8px;
  top: 11px;
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/c5088b83da38c409545e.svg);
}

.footer__app-components-atoms-Footer-styles__HTfg5 {
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 32px;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  color: #78909C;
}

.footer__app-components-atoms-Footer-styles__HTfg5 &gt; div {
  margin-top: 20px;
}

.footer__app-components-atoms-Footer-styles__HTfg5 a {
  color: inherit;
}

.link__app-components-atoms-Footer-styles__WXlMK {
  color: #546E7A;
}

.spacer__app-components-atoms-Footer-styles__c2lCg {
  padding: 0 8px;
  color: #546E7A;
}

.footer__app-components-atoms-Footer-styles__HTfg5 .img__app-components-atoms-Footer-styles__xFoYh {
  margin-top: 20px;
  display: inline-block;
  width: auto;
  height: 24px;
}

.dss__app-components-atoms-Footer-styles__EQCAm {
  padding: 0 25px;
}

.dssText__app-components-atoms-Footer-styles__yIOJI {
  padding-top: 10px;
}

.dssImage__app-components-atoms-Footer-styles__delDE {
  width: 30%;
  height: 30%;
}

.notFound__app-components-pages-NotFoundPage-styles__CPT_t {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  color: #555;
  font-family: source-han-sans-japanese, proxima-nova, sans-serif;
}

.header__app-components-pages-NotFoundPage-styles__cWnnn {
  font-size: 32px;
}

.headerText__app-components-pages-NotFoundPage-styles__KudhU {
  display: block;
}

.message__app-components-pages-NotFoundPage-styles__AR7NS {
  font-size: 18px;
  margin-top: 60px;
}

.spinner__app-components-atoms-Loading-styles__GLJY9,
.spinner__app-components-atoms-Loading-styles__GLJY9::after {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.spinner__app-components-atoms-Loading-styles__GLJY9 {
  position: absolute;
  z-index: 1000;
  top: calc(50% - (2.28571429rem / 2));
  left: calc(50% - (2.28571429rem / 2));
  margin: 0;
  width: 2.28571429rem;
  height: 2.28571429rem;
  border-top: 1em solid rgb(187 187 187 / 30%);
  border-right: 1em solid rgb(187 187 187 / 30%);
  border-bottom: 1em solid rgb(187 187 187 / 30%);
  border-left: 1em solid #BBB;
  font-size: 5px;
  text-align: center;
  text-indent: -9999em;
  transform: translateZ(0);
  animation: spin__app-components-atoms-Loading-styles__kI5hT 1.1s infinite linear;
}

@keyframes spin__app-components-atoms-Loading-styles__kI5hT {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin__app-components-atoms-Loading-styles__kI5hT {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cover__app-components-atoms-Cover-styles__lOIBF {
  width: 100%;
  height: 200px;
}

.cover__app-components-atoms-Cover-styles__lOIBF .image__app-components-atoms-Cover-styles__LDYAR {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.container__app-components-atoms-ShopInfo-styles__qSG2a {
  padding-top: 16px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: #546E7A;
  box-sizing: border-box;
}

.name__app-components-atoms-ShopInfo-styles__XxygP {
  font-size: 14px;
  font-weight: bold;
}

.link__app-components-atoms-ShopInfo-styles__TM7x1 {
  color: #546E7A;
}

.spacer__app-components-atoms-ShopInfo-styles__e8N5N {
  padding: 0 4px;
}

.contentWrapper__app-components-pages-CheckoutPage-CompletePage-styles__JDbkU {
  position: relative;
  top: -110px;
  max-width: 400px;
  padding: 18px 30px 60px;
  margin: 0 auto -110px;
  background-color: #FFF;
  box-sizing: border-box;
}

@media (max-width: 400px) {
  .contentWrapper__app-components-pages-CheckoutPage-CompletePage-styles__JDbkU {
    padding-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.messageContainer__app-components-pages-CheckoutPage-CompletePage-styles__B_Pzk {
  margin-left: -30px;
  margin-right: -30px;
  padding-bottom: 24px;
  background-color: #FFF;
  border-bottom: 1px solid #DDD;
}

.checkMark__app-components-pages-CheckoutPage-CompletePage-styles__ezta_ {
  margin: 0 auto;
  width: 60px;
  height: 60px;
}

.messages__app-components-pages-CheckoutPage-CompletePage-styles__pfdRa {
  text-align: center;
}

.messages__app-components-pages-CheckoutPage-CompletePage-styles__pfdRa .title__app-components-pages-CheckoutPage-CompletePage-styles__wsVN1 {
  padding-top: 20px;
  font-size: 18px;
}

.messages__app-components-pages-CheckoutPage-CompletePage-styles__pfdRa .body__app-components-pages-CheckoutPage-CompletePage-styles__KNIPR {
  padding-top: 4px;
  font-size: 14px;
}

.logoContainer__app-components-pages-CheckoutPage-CompletePage-styles__gv9XR {
  text-align: center;
  font-size: 18px;
  padding: 30px 20px;
}

.logoContainer__app-components-pages-CheckoutPage-CompletePage-styles__gv9XR .image__app-components-pages-CheckoutPage-CompletePage-styles__Ejx0j {
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.detailContainer__app-components-pages-CheckoutPage-CompletePage-styles__IG_Ev {
  max-width: 400px;
  margin: 0 30px;
  border-top: 3px solid #DDD;
  overflow: hidden;
  font-size: 14px;
  box-sizing: border-box;
}

@media (max-width: 400px) {
  .detailContainer__app-components-pages-CheckoutPage-CompletePage-styles__IG_Ev {
    margin: 0;
  }
}

.detailRow__app-components-pages-CheckoutPage-CompletePage-styles__fK9u9 {
  display: flex;
  border-bottom: 1px solid #DDD;
}

.detailContainer__app-components-pages-CheckoutPage-CompletePage-styles__IG_Ev .title__app-components-pages-CheckoutPage-CompletePage-styles__wsVN1 {
  width: 40%;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detailContainer__app-components-pages-CheckoutPage-CompletePage-styles__IG_Ev .description__app-components-pages-CheckoutPage-CompletePage-styles__hKTZL {
  width: 60%;
  min-height: 56px;
  text-align: right;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__app-components-pages-CheckoutPage-CompletePage-styles__XAqCR {
  position: relative;
}

.card__app-components-pages-CheckoutPage-CompletePage-styles__XAqCR .logo-card-brand {
  position: absolute;
  top: 0;
  right: 43px;
}

.ellipsis__app-components-pages-CheckoutPage-CompletePage-styles__B5iF1 {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.date__app-components-pages-CheckoutPage-CompletePage-styles__uKcpa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: normal;
  height: 56px;
}

.hour__app-components-pages-CheckoutPage-CompletePage-styles__xQlWT {
  padding-top: 3px;
  color: #90A4AE;
  font-size: 12px;
}

.amount__app-components-pages-CheckoutPage-CompletePage-styles__amvZ4 {
  font-size: 16px;
}

.jpy__app-components-pages-CheckoutPage-CompletePage-styles__aXGOk {
}

.container__app-components-pages-CheckoutPage-ErrorPage-styles__NJsmx {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  color: #555;
  font-family: source-han-sans-japanese, proxima-nova, sans-serif;
}

.header__app-components-pages-CheckoutPage-ErrorPage-styles__Thj1Q {
  font-size: 32px;
}

.headerText__app-components-pages-CheckoutPage-ErrorPage-styles__gVyrb {
  display: block;
}

.message__app-components-pages-CheckoutPage-ErrorPage-styles__cE8sS {
  font-size: 18px;
  margin-top: 60px;
}

.creditCardForm__app-components-domains-checkouts-creditcards-CreditCardForm-styles__f19U1 {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 60px 60px;
  background-color: #FFF;
  box-sizing: border-box;
}

.rowField__app-components-domains-checkouts-creditcards-CreditCardForm-styles__kGE73 {
  position: relative;
  padding-top: 72px;
  margin-top: 8px;
  overflow: hidden;
}

.rowField__app-components-domains-checkouts-creditcards-CreditCardForm-styles__kGE73 .field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA {
  top: 0;
  left: 0;
  position: absolute;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rowField__app-components-domains-checkouts-creditcards-CreditCardForm-styles__kGE73 .field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA:last-child {
  margin-top: 0;
  left: auto;
  right: 0;
  width: calc(50% + 1px);
}

.rowField__app-components-domains-checkouts-creditcards-CreditCardForm-styles__kGE73 .field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA:first-child .errorInput__app-components-domains-checkouts-creditcards-CreditCardForm-styles__g0722 {
  position: relative;
  z-index: 100;
}

.rowField__app-components-domains-checkouts-creditcards-CreditCardForm-styles__kGE73 .field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA .input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X:active,
.rowField__app-components-domains-checkouts-creditcards-CreditCardForm-styles__kGE73 .field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA .input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X:focus {
  position: relative;
  z-index: 200;
}

.field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA {
  position: relative;
  margin-top: 8px;
}

.field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA:first-child {
  margin-top: 0;
}

.field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA .logo-card-brand {
  position: absolute;
  right: 10px;
  top: 37px;
}

.field__app-components-domains-checkouts-creditcards-CreditCardForm-styles__W74AA .aboutCvc__app-components-domains-checkouts-creditcards-CreditCardForm-styles__cIWxX {
  position: absolute;
  display: block;
  width: 36px;
  height: 24px;
  right: 10px;
  top: 30px;
  z-index: 300;
}

.label__app-components-domains-checkouts-creditcards-CreditCardForm-styles__BqNxr {
  color: #95A5A6;
  font-size: 13px;
}

.errorLabel__app-components-domains-checkouts-creditcards-CreditCardForm-styles__TPsUb {
  color: #A94442;
}

/**
 * Input
 */
.input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X {
  border: 1px solid #95A5A6;
  background-color: #FFF;
  font-size: 18px;
  height: 48px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 24px;
}

.input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X::placeholder {
  color: #DDD;
}

.input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X:focus,
.input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X:active {
  border-color: #1FC8DB;
  outline: none;
}

.errorInput__app-components-domains-checkouts-creditcards-CreditCardForm-styles__g0722 {
  border-color: #A94442;
  color: #A94442;
}

.errorInput__app-components-domains-checkouts-creditcards-CreditCardForm-styles__g0722:focus,
.errorInput__app-components-domains-checkouts-creditcards-CreditCardForm-styles__g0722:active {
  border-color: #A94442;
}

.error__app-components-domains-checkouts-creditcards-CreditCardForm-styles__p3XpU {
  color: #A94442;
  font-size: 12px;
  padding-top: 10px;
}

/**
 * Checkbox
 */
.checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 {
  display: block;
  height: 48px;
  line-height: 48px;
  margin-top: 16px;
  padding: 0 13px;
  border: 1px solid #95A5A6;
  background-color: #FFF;
  font-size: 14px;
  color: #546E7A;
  cursor: pointer;

  /* preload icon-check.svg */
  background-image: url(/5d9726cdcd4b099fb61d.svg);
  background-repeat: no-repeat;
  background-position: -9999px -9999px;
}

.checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 input {
  position: relative;
  top: 7px;
  width: 24px;
  height: 24px;
  outline: none;
  display: inline-block;
  border: solid 1px #95A5A6;
  border-radius: 2px;
  background-color: #FFF;
}

.checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 input:checked {
  background-color: #29ABE9;
  border: none;
}

.checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 input:checked::before {
  width: 14px;
  height: 14px;
  position: absolute;
  display: block;
  background-image: url(/5d9726cdcd4b099fb61d.svg);
  background-size: cover;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -7px;
}

/*
  Edgeã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹è¡¨ç¤ºã‚’ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã«ã™ã‚‹å¯¾å¿œ
  https://github.com/Coiney/issues/issues/4282
  Edgeä»¥å¤–ã§appearanceã¨contentã‚’è¨­å®šã—ã¾ã™ã€‚
  IE11ã§ã¯supportsã‚¯ã‚¨ãƒªã¯æœªã‚µãƒãƒ¼ãƒˆã§ã™ãŒã€appearanceã‚‚æœªã‚µãƒãƒ¼ãƒˆã§å…ƒã€…åŠ¹ã„ã¦ã„ãªã„ã®ã§å•é¡Œãªã„ã§ã™ã€‚
*/
@supports not (-ms-ime-align: auto) {
  .checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 input {
    appearance: none;
  }

  .checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 input:checked::before {
    content: '';
  }
}

.checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 .text__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ZfCSJ {
  padding-left: 6px;
  font-size: 14px;
  user-select: none;
}

/**
 * Select
 */
.selectContainer__app-components-domains-checkouts-creditcards-CreditCardForm-styles__CcHpD {
  display: flex;
}

.selectWrapper__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ShXvh {
  flex: 1;
  position: relative;
}

.selectWrapper__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ShXvh::after {
  content: '';
  position: absolute;
  display: block;
  border: 1px solid #1FC8DB;
  border-right: 0;
  border-top: 0;
  transform: rotate(-45deg);
  width: 7px;
  height: 7px;
  margin-top: -6px;
  top: 50%;
  right: 16px;
}

.selectWrapper__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ShXvh:hover::after {
  border-color: #222324;
}

.select__app-components-domains-checkouts-creditcards-CreditCardForm-styles__Vnxsy {
  height: 40px;
  width: 100%;
  line-height: 40px;
  border: 1px solid #D3D6DB;
  border-radius: 3px;
  color: #22231F;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 44px;
  cursor: pointer;
}

.select__app-components-domains-checkouts-creditcards-CreditCardForm-styles__Vnxsy:hover {
  border-color: #AEB1B5;
}

.select__app-components-domains-checkouts-creditcards-CreditCardForm-styles__Vnxsy:active,
.select__app-components-domains-checkouts-creditcards-CreditCardForm-styles__Vnxsy:focus {
  border-color: #1FC8DB;
  outline: none;
}

.selectSpacer__app-components-domains-checkouts-creditcards-CreditCardForm-styles__N0wN3 {
  flex-basis: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

/**
 * Button
 */
.buttonContaienr__app-components-domains-checkouts-creditcards-CreditCardForm-styles__WK5dN {
  margin-top: 16px;
}

.buttonContaienr__app-components-domains-checkouts-creditcards-CreditCardForm-styles__WK5dN button:last-child {
  margin-top: 8px;
}

@media (max-width: 400px) {
  .creditCardForm__app-components-domains-checkouts-creditcards-CreditCardForm-styles__f19U1 {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }

  .input__app-components-domains-checkouts-creditcards-CreditCardForm-styles__u_r3X,
  .errorInput__app-components-domains-checkouts-creditcards-CreditCardForm-styles__g0722 {
    font-size: 14px;
  }

  .label__app-components-domains-checkouts-creditcards-CreditCardForm-styles__BqNxr,
  .errorLabel__app-components-domains-checkouts-creditcards-CreditCardForm-styles__TPsUb {
    font-size: 12px;
  }

  .checkbox__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ezGy2 .text__app-components-domains-checkouts-creditcards-CreditCardForm-styles__ZfCSJ {
    font-size: 12px;
  }
}

.button__app-components-atoms-Button-styles__PziVy {
  position: relative;
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: #FFF;
  outline: none;
  cursor: pointer;
}

.button__app-components-atoms-Button-styles__PziVy::before {
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0%);
}

.button__app-components-atoms-Button-styles__PziVy:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.button__app-components-atoms-Button-styles__PziVy:disabled::before {
  background-color: rgb(0 0 0 / 0%) !important;
}

.button__app-components-atoms-Button-styles__PziVy:active::before {
  background-color: rgb(0 0 0 / 10%);
}

.button__app-components-atoms-Button-styles__PziVy:hover::before,
.button__app-components-atoms-Button-styles__PziVy:focus::before {
  background-color: rgb(0 0 0 / 10%);
}

.loadingButton__app-components-atoms-Button-styles__f3niE {
}

.loadingButton__app-components-atoms-Button-styles__f3niE::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 16px;
  width: 16px;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid #FFF;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  animation: spin__app-components-atoms-Button-styles__dtaZm 500ms infinite linear;
}

@keyframes spin__app-components-atoms-Button-styles__dtaZm {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/**
 * Secondary
 */
.secondaryButton__app-components-atoms-Button-styles__KuYdG {
  color: #888;
  background-color: #F1F1F1;
}

.secondaryLoadingButton__app-components-atoms-Button-styles__vU913 {
  background-color: #F1F1F1;
}

.secondaryLoadingButton__app-components-atoms-Button-styles__vU913:disabled {
  opacity: 0.9;
}

.amount__app-components-atoms-Amount-styles__JU_ka {
  max-width: 400px;
  margin: 0 auto;
  padding: 42px 60px 16px;
  background-color: #FFF;
  text-align: center;
  box-sizing: border-box;
}

.text__app-components-atoms-Amount-styles__wjDw5 {
  font-size: 36px;
  color: #000;
}

.jpy__app-components-atoms-Amount-styles__XNABS {
  font-size: 16px;
  color: #90A4AE;
}

.jst__app-components-atoms-Amount-styles__deQa8 {
  font-size: 12px;
  color: #90A4AE;
}

.subject__app-components-atoms-Amount-styles__UFhM_ {
  font-size: 16px;
  color: #000;
  word-break: break-word;
  word-wrap: break-word;
}

.validUntil__app-components-atoms-Amount-styles__mwnzu {
  font-size: 14px;
}

.container__app-components-atoms-Logo-styles__SzSi8 {
  max-width: 400px;
  background-color: #FFF;
  border-bottom: 1px solid #DDD;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logo__app-components-atoms-Logo-styles__xyQY6 {
  min-height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.label__app-components-atoms-Logo-styles__i_M5z {
  max-width: 400px;
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  padding: 30px 60px;
  word-break: break-word;
  word-wrap: break-word;
}

@media (max-width: 400px) {
  .label__app-components-atoms-Logo-styles__i_M5z {
    padding: 15px 30px;
  }
}

.image__app-components-atoms-Logo-styles__SrYBL {
  flex: 1;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  box-sizing: border-box;
}

.buttonContainer__app-components-atoms-ModalAlert-styles__mO8C1 {
  margin-top: 20px;
}

.modal__app-components-atoms-Modal-styles__FyNRZ {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(17 17 17 / 86%);
  z-index: 1000;
}

.container__app-components-atoms-Modal-styles__nO_Nu {
  width: 640px;
  max-height: calc(100vh - 40px);
  margin: 0 auto;
  padding: 20px;
  background-color: #FFF;
  border-radius: 5px;
  box-sizing: border-box;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .container__app-components-atoms-Modal-styles__nO_Nu {
    width: calc(100% - 40px);
    max-height: calc(100vh - 160px);
  }
}

.container__app-components-atoms-CardLogo-styles__rYCpN {
  max-width: 400px;
  background-color: #FFF;
  margin: 0 auto;
  box-sizing: border-box;
}

.logoWrapper__app-components-atoms-CardLogo-styles__hUkSe {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.container__app-components-atoms-Remarks-styles__ksoAH {
  max-width: 400px;
  margin: -30px auto 0;
  background-color: #FFF;
  box-sizing: border-box;
}

.textWrapper__app-components-atoms-Remarks-styles__Lou0s {
  margin: 0 60px;
  padding: 30px 0 60px;
  border-top: 1px solid #DDD;
}

.label__app-components-atoms-Remarks-styles__67N56 {
  font-size: 14px;
  color: #95A5A6;
}

.text__app-components-atoms-Remarks-styles__Utv_T {
  font-size: 13px;
  padding-top: 4px;
  word-break: break-word;
  word-wrap: break-word;
}

@media (max-width: 400px) {
  .container__app-components-atoms-Remarks-styles__ksoAH {
    margin-top: 0;
  }

  .textWrapper__app-components-atoms-Remarks-styles__Lou0s {
    margin: 0 30px;
    padding: 20px 0;
  }

  .label__app-components-atoms-Remarks-styles__67N56 {
    font-size: 12px;
  }

  .text__app-components-atoms-Remarks-styles__Utv_T {
    font-size: 12px;
  }
}

.contentWrapper__app-components-pages-CheckoutPage-CreditCardPage-styles__TVDR7 {
  position: relative;
  top: -110px;
  margin-bottom: -110px;
}

@media (max-width: 400px) {
  .contentWrapper__app-components-pages-CheckoutPage-CreditCardPage-styles__TVDR7 {
    padding: 0 20px;
  }
}

.serverError__app-components-pages-ServerErrorPage-styles__rHiJi {
  padding: 60px 20px;
  text-align: center;
  color: #555;
  font-family: source-han-sans-japanese, proxima-nova, sans-serif;
}

.header__app-components-pages-ServerErrorPage-styles__nFj9u {
  font-size: 32px;
}

.headerText__app-components-pages-ServerErrorPage-styles__lRBDD {
  display: block;
}

.message__app-components-pages-ServerErrorPage-styles__CWa2W {
  font-size: 18px;
  margin-top: 60px;
}

html {
  background-color: #ECF0F1 !important;
  /* stylelint-disable-next-line max-line-length */
  font-family: 'Avenir Next', Avenir, -apple-system, BlinkMacSystemFont, '.SFNSDisplay-Regular', 'ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ ProN W3', 'Hiragino Kaku Gothic ProN', 'ãƒ¡ã‚¤ãƒªã‚ª', Meiryo, sans-serif;
}

/*
 * "FontName" licensed under the IPA Font License Agreement v1.0
 * http://www.hogehoge.com/ï¼ˆé…å¸ƒå…ƒã®URLï¼‰
 * http://ipafont.ipa.go.jp/ï¼ˆIPAãƒ•ã‚©ãƒ³ãƒˆã®URLï¼‰
 * http://ipafont.ipa.go.jp/ipa_font_license_v1.htmlï¼ˆIPAãƒ•ã‚©ãƒ³ãƒˆãƒ©ã‚¤ã‚»ãƒ³ã‚¹v1.0ã®URLï¼‰
 */
@font-face {
  font-family: ipaweb;
  src: url(/5664e7728ee2bc3bdabe.woff) format('woff');
  font-weight: normal;
  font-style: normal;
}

input::-ms-clear {
  visibility: hidden;
}

.logo-card-brand {
  display: inline-block;
  width: 36px;
  height: 22px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.logo-card-brand-visa {
  background-image: url(/185467d9fc06231cdb75.png);
}

.logo-card-brand-master {
  background-image: url(/470e73ebb43cfd5f5e9b.png);
}

.logo-card-brand-jcb {
  background-image: url(/4758338cda69fb16ae68.png);
}

.logo-card-brand-amex {
  background-image: url(/e4be4965d6a46c90e3f2.png);
}

.logo-card-brand-diners {
  background-image: url(/db75c3d5eeeb4055bc06.png);
}

.logo-card-brand-discover {
  background-image: url(/5d4551da900faf666317.png);
}

.logo-card-brand-unknown {
  background-image: url(/807258d7651977d74d0a.png);
}

</pre></body></html>