#back-in-stock-form #alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
}

.back-in-stock-popup {
    display: none;
}

#back-in-stock-button {
    margin-top: 10px;
    margin-bottom: 10px;
}

.back-in-stock-popup aside {
    display: block;
}

.back-in-stock-popup a {
    background-color: transparent;
}

.back-in-stock-popup a:active, .back-in-stock-popup a:hover {
    outline-width: 0;
}

.back-in-stock-popup img {
    border-style: none;
    max-width: 100%;
}

.back-in-stock-popup button, .back-in-stock-popup input {
    font: inherit;
    margin: 0;
}

.back-in-stock-popup button, .back-in-stock-popup input {
    overflow: visible;
}

.back-in-stock-popup button {
    text-transform: none;
}

.back-in-stock-popup button, .back-in-stock-popup html [type="button"] {
    -webkit-appearance: button;
}

.back-in-stock-popup button::-moz-focus-inner, .back-in-stock-popup [type="button"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

.back-in-stock-popup fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

.back-in-stock-popup [type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

.back-in-stock-popup ::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

.back-in-stock-popup * {
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}

.back-in-stock-popup h2 {
    font-weight: 500;
}

.back-in-stock-popup fieldset {
    border: none;
}

.back-in-stock-popup button, .back-in-stock-popup label {
    cursor: pointer;
}

.back-in-stock-popup .fs-input {
    -webkit-appearance: none;
    border: 1px solid #ccc;
    line-height: 1.4;
    min-height: 1.8em;
    padding: 3px 5px;
    width: 100%;
}

.back-in-stock-popup .fs-input:focus {
    border-color: #4CAAC0;
    box-shadow: inset 0 0 1px #4CAAC0;
    outline: none;
}

.back-in-stock-popup .fs-c-checkbox {
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
}

.back-in-stock-popup .fs-c-checkbox__checkbox {
    display: none;
}

.back-in-stock-popup .fs-c-checkbox__label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.back-in-stock-popup .fs-c-checkbox__checkMark {
    background: #ffffff;
    border-radius: 3px;
    border: 2px solid #666666;
    cursor: pointer;
    display: block;
    width: 8px;
    height: 16px;
    margin: 0 4px 0 0;
    position: relative;
    min-width: 16px;
}

.back-in-stock-popup .fs-c-checkbox__checkMark::before {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "✔";
    color: #ffffff;
    display: block;
    font-size: 1.05em;
    opacity: 0;
    position: absolute;
    top: 0.1em;
    left: 0.1em;
}

.back-in-stock-popup .fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
    background: black;
    border-color: black;
    color: #ffffff;
    transition: all 0.5s 0s ease;
}

.back-in-stock-popup .fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark::before {
    opacity: 1;
}

.back-in-stock-popup .fs-c-inputTable {
    table-layout: fixed;
}

.back-in-stock-popup .fs-c-inputTable__headerCell {
    text-align: right;
}

.back-in-stock-popup .fs-c-inputTable__headerCell, .back-in-stock-popup .fs-c-inputTable__dataCell {
    padding: 16px 0;
}

.back-in-stock-popup .fs-c-inputTable__dataCell {
    position: relative;
}

.back-in-stock-popup .fs-c-modal {
    background: rgba(0, 0, 0, 0.7);
    color: #333333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483600;
    display: flex;
    align-items: flex-start;
    opacity: 1;
    overflow: auto;
    padding: 16px 0 40px;
    -webkit-overflow-scrolling: touch;
}

.back-in-stock-popup .fs-c-modal__inner {
    background: #ffffff;
    border-radius: 3px;
    color: #333333;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    margin: auto;
    max-width: calc(100vw - 8px * 2);
}

.back-in-stock-popup .fs-c-modal__header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.back-in-stock-popup .fs-c-modal__close {
    color: #333333;
    cursor: pointer;
    white-space: nowrap;
    padding: 3px;
}

.back-in-stock-popup .fs-c-modal__close::before {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "×";
    display: block;
    font-size: 0.9em;
}

.back-in-stock-popup .fs-c-modal__close:hover {
    color: #4c4c4c;
}

.back-in-stock-popup .fs-c-modal__close::before {
    height: 1em;
}

.back-in-stock-popup .fs-c-modal__contents {
    flex-grow: 1;
    max-height: calc(100% - 80px);
    overflow: auto;
    padding: 16px;
}

.back-in-stock-popup .fs-c-modal__contents .fs-c-inputTable {
    table-layout: auto;
}

.back-in-stock-popup .fs-c-productImage__image {
    display: block;
    max-width: 130px;
    object-fit: contain;
    margin: 0 auto;
}

.back-in-stock-popup .fs-c-requiredMark {
    display: inline-block;
    text-indent: -999px;
    width: 1em;
    height: 1em;
    right: 0;
    top: 0;
}

.back-in-stock-popup .fs-c-requiredMark::before {
    content: "*";
    display: block;
    font-size: 1.2em;
    text-indent: 0;
}

.back-in-stock-popup .fs-c-stockNotificationsProduct__productName {
    margin-top: 30px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.back-in-stock-popup *, .back-in-stock-popup :after, .back-in-stock-popup :before {
    background-repeat: no-repeat;
    box-sizing: inherit;
}

.back-in-stock-popup :after, .back-in-stock-popup :before {
    text-decoration: inherit;
    vertical-align: inherit;
}

.back-in-stock-popup * {
    margin: 0;
    padding: 0;
}

.back-in-stock-popup a {
    background-color: transparent;
}

.back-in-stock-popup a:active, .back-in-stock-popup a:hover {
    outline-width: 0;
}

.back-in-stock-popup table {
    border-color: inherit;
    text-indent: 0;
}

.back-in-stock-popup input {
    border-radius: 0;
}

.back-in-stock-popup .fs-c-productName__variation .fs-c-variant-name {
    color: dimgray;
    padding-right: 7px;
}

.back-in-stock-popup button, .back-in-stock-popup input {
    font: inherit;
}

.back-in-stock-popup button {
    overflow: visible;
}

.back-in-stock-popup button {
    text-transform: none;
}

.back-in-stock-popup [role=button], .back-in-stock-popup [type=button], .back-in-stock-popup button {
    cursor: pointer;
}

.back-in-stock-popup [type=button]::-moz-focus-inner, .back-in-stock-popup button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

.back-in-stock-popup button, .back-in-stock-popup html [type=button] {
    -webkit-appearance: button;
}

.back-in-stock-popup button, .back-in-stock-popup input {
    background-color: transparent;
    border-style: none;
}

.back-in-stock-popup a:focus, .back-in-stock-popup button:focus, .back-in-stock-popup input:focus {
    outline-width: 0;
}

.back-in-stock-popup img {
    border-style: none;
}

.back-in-stock-popup button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.back-in-stock-popup *, .back-in-stock-popup ::after, .back-in-stock-popup ::before {
    box-sizing: inherit;
    border-style: solid;
    border-width: 0;
}

.back-in-stock-popup * {
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

.back-in-stock-popup ::after, .back-in-stock-popup ::before {
    text-decoration: inherit;
    vertical-align: inherit;
}

.back-in-stock-popup a {
    text-decoration: none;
}

.back-in-stock-popup img {
    vertical-align: middle;
}

.back-in-stock-popup button, .back-in-stock-popup input {
    background-color: transparent;
    color: inherit;
    font-style: inherit;
    font-weight: inherit;
    min-height: 1em;
}

.back-in-stock-popup table {
    border-collapse: collapse;
    border-spacing: 0;
}

.back-in-stock-popup ::-moz-selection {
    background-color: #B3D4FC;
    text-shadow: none;
}

.back-in-stock-popup ::selection {
    background-color: #B3D4FC;
    text-shadow: none;
}

.fs-c-stockNotificationsProduct__productImage {
    text-align: center;
}

.fs-c-stockNotificationsProduct__productImage img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#BIS_popup_register {
    overflow: hidden;
}

.back-in-stock-popup a {
    color: #313131;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .back-in-stock-popup table, .back-in-stock-popup input {
        line-height: 1.2;
    }

    .back-in-stock-popup .fs-input {
        border-radius: 0;
    }

    .back-in-stock-popup input[type="checkbox"] {
        margin-top: -1px;
        margin-right: 4px;
        position: relative;
        -webkit-appearance: button;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 16px;
        height: 16px;
        content: "";
        background-color: #FFFFFF;
        border: 1px solid #999999;
        vertical-align: middle;
        cursor: pointer;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    .back-in-stock-popup input[type="checkbox"]:checked:after {
        margin-top: -1px;
        display: block;
        position: absolute;
        top: 3px;
        left: 3px;
        content: "";
        width: 9px;
        height: 6px;
        border-left: 2px solid #333;
        border-bottom: 2px solid #333;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-border-radius: 0;
        border-radius: 0;
    }
}

.back-in-stock-popup .fs-c-inputInformation__button.fs-c-buttonContainer.fs-c-buttonContainer--subscribeToArrivalNotice {
    margin-top: 2px;
}

.back-in-stock-popup .fs-c-modal .fs-c-stockNotificationsMessage {
    padding: 15px 0;
    color: #3d3939;
}

.back-in-stock-popup .fs-c-stockNotificationsRegisterField .fs-c-inputTable .fs-c-inputTable__headerCell {
    margin-right: 1em;
    padding: 1em 0 0;
}

@media screen and (min-width: 768px) {
    .back-in-stock-popup .fs-c-modal__contents {
        box-sizing: content-box;
    }
}

.back-in-stock-popup .fs-c-button--standard {
    background: #ebebeb;
    border: 1px solid #bbbbbb;
    border-radius: 0;
    color: #3c3c3c;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    padding: 0.8em 1.6em 0.6em;
    box-shadow: 0 0 2px #b2b2b2;
}

.back-in-stock-popup .fs-c-button--standard:hover, .back-in-stock-popup .fs-c-button--standard:visited, .back-in-stock-popup .fs-c-button--standard:active {
    text-decoration: none;
}

.back-in-stock-popup .fs-c-buttonContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

@media screen and (min-width: 768px) {
    .back-in-stock-popup .fs-c-buttonContainer > button {
        margin-right: 20px;
    }

    .back-in-stock-popup .fs-c-buttonContainer > button:last-of-type {
        margin-right: 0;
    }
}

.back-in-stock-popup .fs-c-button--standard {
    background: black;
    border: none;
    width: 100%;
    color: #fff;
    font-size: 16px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    padding: 0.6em 1.2em 0.6em;
    box-shadow: none;
    min-width: 120px;
    box-sizing: border-box;
}

.back-in-stock-popup .fs-c-button--standard:hover {
    text-decoration: none;
}

.back-in-stock-popup .fs-c-buttonContainer {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .back-in-stock-popup .fs-c-button--standard {
        font-size: 14px;
    }

    .back-in-stock-popup .fs-c-buttonContainer {
        justify-content: center;
    }
}

.back-in-stock-popup .fs-c-requiredMark {
    width: 2.4em;
    top: -0.12em;
    position: relative;
}

.back-in-stock-popup .fs-c-requiredMark:before {
    content: "必須";
    display: block;
    font-size: 0.9em;
    text-indent: 0;
    background: #fff;
    color: #cc0000;
    border: 1px solid #cc0000;
    border-radius: 2px;
    padding: 2px;
    box-sizing: content-box;
    text-align: center;
}

#email-error {
    color: #cc0000;
    font-size: 12px;
    padding-top: 3px;
}

.back-in-stock-popup .fs-c-inputTable {
    width: 100%;
}

.back-in-stock-popup .fs-c-inputTable .fs-c-inputTable__headerCell {
    text-align: left;
    font-size: 14px;
    line-height: 1;
    padding: 5px 0;
    display: block;
}

.back-in-stock-popup .fs-c-inputTable .fs-c-inputTable__headerCell > label {
    font-size: 14px;
    letter-spacing: 1px;
}

.back-in-stock-popup .fs-c-inputTable .fs-c-inputTable__dataCell {
    padding: 5px 0;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 8px;
    display: block;
}

.back-in-stock-popup .fs-c-inputTable .fs-c-inputTable__dataCell .fs-input {
    padding: 6px;
    background-color: #eeeeee;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    width: 100%;
}

.back-in-stock-popup .fs-c-additionalCheckField {
    padding: 1.5em 0;
    margin: 0 auto;
    max-width: 770px;
    text-align: left;
    line-height: 2.2;
    font-size: 14px;
}

.back-in-stock-popup .fs-c-checkbox__checkMark {
    margin-right: 1em;
}

@media screen and (max-width: 767px) {
    .back-in-stock-popup .fs-c-inputTable .fs-c-inputTable__dataCell .fs-input {
        min-width: 5em;
    }
}

.back-in-stock-popup .fs-c-modal__title {
    width: 100%;
    font-size: 20px;
    letter-spacing: 1px;
}

.back-in-stock-popup .fs-c-modal__contents {
    font-size: 14px;
}

.back-in-stock-popup .fs-c-modal__close {
    width: 40px;
    padding-top: 10px;
}

.back-in-stock-popup .fs-c-modal__close:before {
    font-size: 26px;
}

@media screen and (min-width: 768px) {
    .back-in-stock-popup .fs-c-modal__title {
        padding: 16px 16px 16px 32px;
    }

    .back-in-stock-popup .fs-c-modal__contents {
        padding: 16px 32px;
    }

    .back-in-stock-popup .fs-c-modal__contents .fs-c-additionalCheckField {
        padding: 0.5em 0;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .back-in-stock-popup .fs-c-modal__inner .fs-c-additionalCheckField {
        padding: 0;
    }

    .back-in-stock-popup .fs-c-modal__title {
        width: calc(100% - 40px);
        margin: 0 0 0 20px;
        padding: 20px 0 10px;
        font-size: 16px;
    }
}

.back-in-stock-popup .fs-c-privacyPolicyAgreeField a {
    text-decoration: none;
    border-bottom: 1px solid #333333;
    vertical-align: top;
}

.back-in-stock-popup .fs-c-privacyPolicyAgreeField a {
    transition: all 0.4s;
}

.back-in-stock-popup .fs-c-privacyPolicyAgreeField a:hover {
    text-decoration: none;
    background-color: #ccc;
    transition: all 0.4s;
}

.validation-error-message {
    color: red;
    margin-top: 5px;
    font-size: 12px;
}

.validation-error {
    border: 1px solid red;
}

.validation-space {
    margin-top: 0;
    margin-bottom: 10px;
}

.validation-left-align {
    text-align: left;
}

#BIS_button {
    margin-top: 15px;
}

#BIS_loading {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    display: none;
}

#BIS_loading .loading-wrapper {
    bottom: 24px;
    position: absolute;
    width: 100%;
    pointer-events: none;
}

/* wishlist button */

@media all {
    .wish-list-custom-notification *, .wish-list-custom-notification :before, .wish-list-custom-notification :after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .wish-list-custom-notification button {
        font-size: 17px;
        line-height: 1.7;
        font-weight: 300;
        font-style: normal;
        color: #333;
        -webkit-font-smoothing: antialiased;
        -webkit-text-size-adjust: 100%;
    }

    .wish-list-custom-notification button {
        overflow: visible;
    }

    .wish-list-custom-notification img {
        border: 0 none;
    }

    .wish-list-custom-notification button {
        font-size: 1em;
    }

    .wish-list-custom-notification button {
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .wish-list-custom-notification button {
        cursor: pointer;
    }
}

@media all {
    .wish-list-custom-notification button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }
}

#BIS_add_in_stock {
    display: none;
    margin-top: 10px;
}

.lds-ring-loading {
    display: inline-block;
    position: relative;
    width: 35px;
    height: 50px;
}

.lds-ring-loading div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring-loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

#BIS_popup_register .success-message {
    color: green;
    font-weight: bolder;
}

#BIS_popup_register .error-message {
    color: red;
    font-weight: bolder;
}

#back-in-stock-product-name {
    font-weight: bolder;
}

.lds-ring-loading div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring-loading div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring-loading div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.back-in-stock-name-select {
    padding: 10px 2px;
    background-color: #eeeeee;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
}