@charset "UTF-8";
/*================================================================
 *FILE          :common.css
 *DESCRIPTION   :resetはressを使用。環境変数とmixinは_mixin.scss内に記述。
                 それぞれfoundationよりインポート。
 *AUTHOR        :
 *--------------------------------------------------------------
 *(C)
=================================================================*/
/* フォント定設
-----------------------------------------------------------------*/
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

@font-face {
  font-family: 'MyYuMinchoM';
  font-weight: normal;
  src: local("YuMincho-Medium"), local("Yu Mincho Medium"), local("YuMincho-Regular");
  /* 游明朝Mediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: 'MyYuMinchoM';
  font-weight: bold;
  src: local("YuMincho-Demibold"), local("Yu Mincho");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

/* イージング
-----------------------------------------------------------------*/
/* デュレーション
-----------------------------------------------------------------*/
/*================================================================
 *FILE					:_components.scss
 *DESCRIPTION   :全ページ共通コンポーネント カスタムCSS
 *AUTHOR				:
 *--------------------------------------------------------------
 *(C)
=================================================================*/
/* components
-----------------------------------------------------------------*/
.fs-c-inputTable {
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8; }

input[type="text"],
input[type="tel"],
input[type="submit"],
input[type="password"],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-radius: 0;
  border: none;
  background: transparent;
  z-index: 1;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8;
  border-width: 1px;
  border-style: solid;
  border-color: #efefef; }
  input[type="text"]::-ms-expand,
  input[type="tel"]::-ms-expand,
  input[type="submit"]::-ms-expand,
  input[type="password"]::-ms-expand,
  select::-ms-expand,
  textarea::-ms-expand {
    display: none; }
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="submit"]:focus,
  input[type="password"]:focus,
  select:focus,
  textarea:focus {
    outline: none; }
  input[type="text"].is-error,
  input[type="tel"].is-error,
  input[type="submit"].is-error,
  input[type="password"].is-error,
  select.is-error,
  textarea.is-error {
    border-color: #ff2626;
    background: rgba(255, 38, 38, 0.05); }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #efefef inset; }

select {
  border-color: transparent; }

input[type="text"],
input[type="tel"],
input[type="password"] {
  height: 50px;
  padding: 0 16px;
  background: #efefef; }
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus {
    background-color: #ffffff !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-color: #efefef !important;
    border-width: 1px;
    border-style: solid; }

input[type="text"],
input[type="tel"],
textarea {
  border-radius: 4px; }

#fs_input_currentPassword,
#fs_input_newPassword,
#fs_input_password,
#fs_input_tempPassword {
  border-radius: 4px 0 0 4px; }

.fs-c-inputField__field--zipCode input[type="tel"] {
  width: 97px; }

textarea {
  padding: 16px;
  line-height: 1.8;
  background: #efefef; }
  @media print, screen and (min-width: 768px) {
    textarea {
      min-height: 200px; } }

select:focus {
  border-color: #539fc7;
  -webkit-box-shadow: none;
  box-shadow: none; }

.fs-c-assist {
  padding: 0;
  margin: 8px 0 0; }

.fs-c-assist.is-error .fs-c-assist__message {
  font-size: 12px;
  letter-spacing: .08em;
  color: #ff2626; }
  .fs-c-assist.is-error .fs-c-assist__message::before {
    content: "";
    width: 3px;
    height: 13px;
    margin-right: 8px;
    background-image: url(../../assets/svg/icon-error.svg);
    background-repeat: no-repeat;
    background-size: 3px 13px;
    background-position: center; }

.fs-c-inputTable tr,
.fs-c-inputTable--inModal.fs-c-inputTable tr {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media print, screen and (max-width: 767px) {
    .fs-c-inputTable tr + tr,
    .fs-c-inputTable--inModal.fs-c-inputTable tr + tr {
      margin-top: 20px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-inputTable tr + tr,
    .fs-c-inputTable--inModal.fs-c-inputTable tr + tr {
      margin-top: 24px; } }

.fs-c-inputTable--inModal .fs-c-inputTable__headerCell,
.fs-c-inputTable--inModal .fs-c-inputTable__dataCell,
.fs-c-inputTable__headerCell,
.fs-c-inputTable__dataCell {
  display: block;
  text-align: left; }
  @media print, screen and (max-width: 767px) {
    .fs-c-inputTable--inModal .fs-c-inputTable__headerCell,
    .fs-c-inputTable--inModal .fs-c-inputTable__dataCell,
    .fs-c-inputTable__headerCell,
    .fs-c-inputTable__dataCell {
      width: 100%; } }

.fs-c-inputTable {
  width: 100%;
  border-collapse: collapse; }

@media print, screen and (max-width: 767px) {
  .fs-c-inputTable__headerCell {
    margin-bottom: 10px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-inputTable__headerCell {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 184px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-inputTable__dataCell {
    width: calc(100% - 184px); } }

@media print, screen and (max-width: 767px) {
  .fs-c-inputTextGroup > * + * {
    margin-left: 15px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-inputTextGroup > * + * {
    margin-left: 16px; } }

.fs-c-inputTable__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 10px 0 15px; }

.fs-c-requiredMark {
  position: absolute;
  left: 0;
  display: block;
  margin-right: 3px;
  line-height: 1.8;
  font-size: 0;
  width: auto;
  overflow: visible; }
  .fs-c-requiredMark::before {
    font-size: 13px;
    letter-spacing: .08em;
    line-height: 1.8;
    content: "※";
    color: #ff2626; }

.fs-c-button--hidePassword,
.fs-c-button--displayPassword {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 50px;
  border-left: none; }
  .fs-c-button--hidePassword::after,
  .fs-c-button--displayPassword::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    background-repeat: no-repeat;
    background-position: center; }

.fs-c-button--displayPassword {
  background-color: #539fc7; }
  .fs-c-button--displayPassword::after {
    height: 11px;
    background-image: url(../../assets/svg/password-eye.svg);
    background-size: 20px 11px; }

.fs-c-button--hidePassword {
  background-color: #6a6a6a; }
  .fs-c-button--hidePassword::after {
    height: 16px;
    background-image: url(../../assets/svg/password-eye-slash.svg);
    background-size: 20px 16px; }

.fs-c-dropdown {
  display: inline-block;
  overflow: initial; }
  .fs-c-dropdown::after {
    position: absolute;
    top: 50%;
    right: 15px;
    bottom: auto;
    border: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    width: 6px;
    height: 14px;
    background: url(../../assets/svg/select_arrow.svg);
    background-repeat: no-repeat;
    background-size: 6px 14px;
    background-position: center;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0;
    pointer-events: none;
    z-index: 99; }
  .fs-c-dropdown select {
    height: 50px;
    border: 1px solid #efefef;
    border-radius: 4px;
    width: 100%;
    padding: 0 16px; }

@media print, screen and (max-width: 767px) {
  select#fs_input_prefecture {
    width: 232px; } }

@media print, screen and (min-width: 768px) {
  select#fs_input_prefecture {
    width: 304px; } }

select#fs_input_birthdayYear {
  width: 90px; }

select#fs_input_birthdayMonth,
select#fs_input_birthdayDay {
  width: 70px; }

.fs-c-dropdownGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.fs-c-dropdownGroup > .fs-c-dropdown:not(:first-of-type) {
  margin-left: 0; }

@media print, screen and (max-width: 767px) {
  .fs-c-inputDate__month,
  .fs-c-inputDate__date,
  .fs-c-inputDate__year {
    margin-right: 36px; } }

@media print, screen and (max-width: 374px) {
  .fs-c-inputDate__month,
  .fs-c-inputDate__date,
  .fs-c-inputDate__year {
    margin-right: 20px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-inputDate__month,
  .fs-c-inputDate__date,
  .fs-c-inputDate__year {
    margin-right: 40px; } }

.fs-c-inputDate__month::before,
.fs-c-inputDate__date::before,
.fs-c-inputDate__year::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 0 !important; }
  @media print, screen and (max-width: 767px) {
    .fs-c-inputDate__month::before,
    .fs-c-inputDate__date::before,
    .fs-c-inputDate__year::before {
      right: -20px; } }
  @media print, screen and (max-width: 374px) {
    .fs-c-inputDate__month::before,
    .fs-c-inputDate__date::before,
    .fs-c-inputDate__year::before {
      right: -16px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-inputDate__month::before,
    .fs-c-inputDate__date::before,
    .fs-c-inputDate__year::before {
      right: -26px; } }

.fs-c-inputDate__year {
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  .fs-c-inputDate__year::before {
    content: "年" !important;
    font-size: 13px;
    letter-spacing: .08em;
    line-height: 1.8; }

.fs-c-inputDate__month,
.fs-c-inputDate__date {
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  .fs-c-inputDate__month::before,
  .fs-c-inputDate__date::before {
    content: none; }

.fs-c-inputDate__month::before {
  content: "月" !important;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8; }

.fs-c-inputDate__date::before {
  content: "日" !important;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8; }

.fs-c-inputGroup,
.fs-c-inputGroup--vertical,
.fs-c-inputGroup--inline {
  border: none; }

.fs-c-checkbox__checkMark {
  margin: 0 16px 0 3px;
  border: 1px solid #adadad;
  border-radius: 4px; }
  .fs-c-checkbox__checkMark::before {
    top: 2px;
    left: 1px;
    font-size: 12px; }

.fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
  background: #539fc7;
  border-color: #539fc7; }

.fs-c-radio__radioLabelText {
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8; }

.fs-c-radio__radioMark {
  border: 1px solid #adadad;
  width: 19px;
  height: 19px;
  max-width: none; }
  @media print, screen and (max-width: 767px) {
    .fs-c-radio__radioMark {
      margin: 0 8px 0 0; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-radio__radioMark {
      margin: 0 10px 0 0; } }

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
  border-color: #539fc7; }
  .fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before {
    width: 9px;
    height: 9px;
    background-color: #539fc7; }

@media print, screen and (max-width: 767px) {
  .fs-c-radioGroup {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; } }

.fs-c-radioGroup > *,
.fs-c-checkboxGroup > * {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  min-height: 0; }

@media print, screen and (max-width: 767px) {
  .fs-c-radioGroup .fs-c-radio:not(:last-child),
  .fs-c-checkboxGroup .fs-c-radio:not(:last-child) {
    margin-right: 8%; } }

@media print, screen and (min-width: 768px) {
  .fs-c-radioGroup .fs-c-radio:not(:last-child),
  .fs-c-checkboxGroup .fs-c-radio:not(:last-child) {
    margin-right: 24px; } }

.fs-c-privacyPolicyAgreeField {
  position: relative;
  padding-bottom: 30px;
  text-align: center; }
  @media print, screen and (max-width: 767px) {
    .fs-c-privacyPolicyAgreeField {
      margin-top: 46px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-privacyPolicyAgreeField {
      margin-top: 64px; } }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__label {
    position: static;
    font-weight: bold; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkMark {
    width: 19px;
    height: 19px;
    border-radius: 50%; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
    background: #ffffff; }
    .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #539fc7;
      border-color: #539fc7;
      top: 4px;
      left: 4px; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__labelText a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-decoration: underline;
    font-weight: normal;
    color: #539fc7; }

.fs-c-checkbox__labelText {
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8; }
  .fs-c-checkbox__labelText a {
    color: #539fc7;
    font-weight: bold; }
    @media print, screen and (max-width: 374px) {
      .fs-c-checkbox__labelText a {
        font-size: 11px; } }

@media print, screen and (max-width: 767px) {
  .fs-c-memberPolicyAgreeField {
    margin-top: 40px; } }

[for="fs_input_newPassword"]::after,
[for="fs_input_tempPassword"]::after,
[for="fs_input_password"]::after {
  content: "（英数字混在で6文字以上）";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 11px; }

display: -webkit-box;

display: -ms-flexbox;

display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 11px;
font-weight: bold;
letter-spacing: .2em;
border-radius: 4px;
border: 1px solid;
-webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
-o-transition: border .3s ease, background-color .3s ease, color .3s ease;
transition: border .3s ease, background-color .3s ease, color .3s ease;
@media print, screen and (max-width: 767px) {
  max-width: 100%; }

width: 250px;
height: 50px;
margin: auto;
border-color: #adadad;
background-color: #ffffff;
@media print, screen and (min-width: 768px) {
  :hover {
    background-color: #2c2c2c;
    border-color: #2c2c2c;
    color: #ffffff; } }

@media print, screen and (max-width: 767px) {
  .topSection .c-itemSlider_wrapper .fs-c-productList__list {
    padding-bottom: 15px; } }

#_rcmdjp_display_1 .fs-c-productPrices,
#_rcmdjp_display_2 .fs-c-productPrices,
.fs-c-featuredProduct .fs-c-productPrices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  letter-spacing: .08em; }

#_rcmdjp_display_1 .fs-c-productPrice--selling,
#_rcmdjp_display_2 .fs-c-productPrice--selling,
.fs-c-featuredProduct .fs-c-productPrice--selling {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 12px; }

#_rcmdjp_display_1 .fs-c-productPrice--listed + .fs-c-productPrice--selling,
#_rcmdjp_display_2 .fs-c-productPrice--listed + .fs-c-productPrice--selling,
.fs-c-featuredProduct .fs-c-productPrice--listed + .fs-c-productPrice--selling {
  color: #ff2626;
  padding-left: 8px; }

#_rcmdjp_display_1 .fs-c-productPrice--listed,
#_rcmdjp_display_2 .fs-c-productPrice--listed,
.fs-c-featuredProduct .fs-c-productPrice--listed {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #adadad;
  text-decoration: line-through;
  font-size: 10px; }

@media print, screen and (max-width: 767px) {
  #_rcmdjp_display_1,
  #_rcmdjp_display_2,
  .fs-c-featuredProduct {
    margin-top: 64px; } }

@media print, screen and (min-width: 768px) {
  #_rcmdjp_display_1,
  #_rcmdjp_display_2,
  .fs-c-featuredProduct {
    margin-top: 120px; } }

@media print, screen and (max-width: 767px) {
  .fs-c-featuredProduct__list,
  .c-itemSlider_wrapper {
    padding-bottom: 15px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

.fs-c-featuredProduct__list .fs-c-productListCarousel__list .fs-c-productPrices,
.fs-c-featuredProduct__list .fs-c-productList__list .fs-c-productPrices,
.fs-c-featuredProduct__list .c-itemSlider .fs-c-productPrices,
.c-itemSlider_wrapper .fs-c-productListCarousel__list .fs-c-productPrices,
.c-itemSlider_wrapper .fs-c-productList__list .fs-c-productPrices,
.c-itemSlider_wrapper .c-itemSlider .fs-c-productPrices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  letter-spacing: .08em; }

.fs-c-featuredProduct__list .fs-c-productListCarousel__list .fs-c-productPrice--selling,
.fs-c-featuredProduct__list .fs-c-productList__list .fs-c-productPrice--selling,
.fs-c-featuredProduct__list .c-itemSlider .fs-c-productPrice--selling,
.c-itemSlider_wrapper .fs-c-productListCarousel__list .fs-c-productPrice--selling,
.c-itemSlider_wrapper .fs-c-productList__list .fs-c-productPrice--selling,
.c-itemSlider_wrapper .c-itemSlider .fs-c-productPrice--selling {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 12px; }

.fs-c-featuredProduct__list .fs-c-productListCarousel__list .fs-c-productPrice--listed + .fs-c-productPrice--selling,
.fs-c-featuredProduct__list .fs-c-productList__list .fs-c-productPrice--listed + .fs-c-productPrice--selling,
.fs-c-featuredProduct__list .c-itemSlider .fs-c-productPrice--listed + .fs-c-productPrice--selling,
.c-itemSlider_wrapper .fs-c-productListCarousel__list .fs-c-productPrice--listed + .fs-c-productPrice--selling,
.c-itemSlider_wrapper .fs-c-productList__list .fs-c-productPrice--listed + .fs-c-productPrice--selling,
.c-itemSlider_wrapper .c-itemSlider .fs-c-productPrice--listed + .fs-c-productPrice--selling {
  color: #ff2626;
  padding-left: 8px; }

.fs-c-featuredProduct__list .fs-c-productListCarousel__list .fs-c-productPrice--listed,
.fs-c-featuredProduct__list .fs-c-productList__list .fs-c-productPrice--listed,
.fs-c-featuredProduct__list .c-itemSlider .fs-c-productPrice--listed,
.c-itemSlider_wrapper .fs-c-productListCarousel__list .fs-c-productPrice--listed,
.c-itemSlider_wrapper .fs-c-productList__list .fs-c-productPrice--listed,
.c-itemSlider_wrapper .c-itemSlider .fs-c-productPrice--listed {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #adadad;
  text-decoration: line-through;
  font-size: 10px; }

@media print, screen and (max-width: 767px) {
  .fs-c-featuredProduct__list .fs-c-productListCarousel__list,
  .fs-c-featuredProduct__list .fs-c-productList__list,
  .fs-c-featuredProduct__list .c-itemSlider,
  .c-itemSlider_wrapper .fs-c-productListCarousel__list,
  .c-itemSlider_wrapper .fs-c-productList__list,
  .c-itemSlider_wrapper .c-itemSlider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto; } }

@media print, screen and (min-width: 768px) {
  .fs-c-featuredProduct__list .fs-c-productListCarousel__list,
  .fs-c-featuredProduct__list .fs-c-productList__list,
  .fs-c-featuredProduct__list .c-itemSlider,
  .c-itemSlider_wrapper .fs-c-productListCarousel__list,
  .c-itemSlider_wrapper .fs-c-productList__list,
  .c-itemSlider_wrapper .c-itemSlider {
    min-width: 1024px;
    max-width: 1200px;
    display: block;
    position: relative;
    padding: 0 60px;
    margin: 48px auto 0; }
    .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-arrow,
    .fs-c-featuredProduct__list .fs-c-productList__list .slick-arrow,
    .fs-c-featuredProduct__list .c-itemSlider .slick-arrow,
    .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-arrow,
    .c-itemSlider_wrapper .fs-c-productList__list .slick-arrow,
    .c-itemSlider_wrapper .c-itemSlider .slick-arrow {
      display: inline-block;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 29px;
      height: 29px;
      background-color: #ffffff;
      border-radius: 50%;
      z-index: 1001;
      width: 29px;
      -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16));
      filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16)); } }
    @media print, screen and (min-width: 768px) and (min-width: 768px) {
      .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-arrow,
      .fs-c-featuredProduct__list .fs-c-productList__list .slick-arrow,
      .fs-c-featuredProduct__list .c-itemSlider .slick-arrow,
      .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-arrow,
      .c-itemSlider_wrapper .fs-c-productList__list .slick-arrow,
      .c-itemSlider_wrapper .c-itemSlider .slick-arrow {
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease; }
        .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-arrow:hover,
        .fs-c-featuredProduct__list .fs-c-productList__list .slick-arrow:hover,
        .fs-c-featuredProduct__list .c-itemSlider .slick-arrow:hover,
        .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-arrow:hover,
        .c-itemSlider_wrapper .fs-c-productList__list .slick-arrow:hover,
        .c-itemSlider_wrapper .c-itemSlider .slick-arrow:hover {
          opacity: .5; } }

@media print, screen and (min-width: 768px) {
      .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-arrow::before,
      .fs-c-featuredProduct__list .fs-c-productList__list .slick-arrow::before,
      .fs-c-featuredProduct__list .c-itemSlider .slick-arrow::before,
      .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-arrow::before,
      .c-itemSlider_wrapper .fs-c-productList__list .slick-arrow::before,
      .c-itemSlider_wrapper .c-itemSlider .slick-arrow::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 9px;
        background-image: url(../svg/slider_arrow-b.svg);
        background-size: 5px 9px;
        background-repeat: no-repeat;
        background-position: center; }
    .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-prev,
    .fs-c-featuredProduct__list .fs-c-productList__list .slick-prev,
    .fs-c-featuredProduct__list .c-itemSlider .slick-prev,
    .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-prev,
    .c-itemSlider_wrapper .fs-c-productList__list .slick-prev,
    .c-itemSlider_wrapper .c-itemSlider .slick-prev {
      left: 30px; }
      .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-prev::before,
      .fs-c-featuredProduct__list .fs-c-productList__list .slick-prev::before,
      .fs-c-featuredProduct__list .c-itemSlider .slick-prev::before,
      .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-prev::before,
      .c-itemSlider_wrapper .fs-c-productList__list .slick-prev::before,
      .c-itemSlider_wrapper .c-itemSlider .slick-prev::before {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg); }
    .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-next,
    .fs-c-featuredProduct__list .fs-c-productList__list .slick-next,
    .fs-c-featuredProduct__list .c-itemSlider .slick-next,
    .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-next,
    .c-itemSlider_wrapper .fs-c-productList__list .slick-next,
    .c-itemSlider_wrapper .c-itemSlider .slick-next {
      right: 30px; }
      .fs-c-featuredProduct__list .fs-c-productListCarousel__list .slick-next::before,
      .fs-c-featuredProduct__list .fs-c-productList__list .slick-next::before,
      .fs-c-featuredProduct__list .c-itemSlider .slick-next::before,
      .c-itemSlider_wrapper .fs-c-productListCarousel__list .slick-next::before,
      .c-itemSlider_wrapper .fs-c-productList__list .slick-next::before,
      .c-itemSlider_wrapper .c-itemSlider .slick-next::before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }

@media print, screen and (min-width: 768px) {
  .fs-c-featuredProduct__list.checkedItem .c-itemSlider,
  .c-itemSlider_wrapper.checkedItem .c-itemSlider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media print, screen and (max-width: 767px) {
  .fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem,
  .fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem,
  .fs-c-featuredProduct__list .c-itemSlider_node,
  .c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem,
  .c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem,
  .c-itemSlider_wrapper .c-itemSlider_node {
    width: 155px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 15px; } }

@media print, screen and (max-width: 374px) {
  .fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem,
  .fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem,
  .fs-c-featuredProduct__list .c-itemSlider_node,
  .c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem,
  .c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem,
  .c-itemSlider_wrapper .c-itemSlider_node {
    width: 145px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem,
  .fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem,
  .fs-c-featuredProduct__list .c-itemSlider_node,
  .c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem,
  .c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem,
  .c-itemSlider_wrapper .c-itemSlider_node {
    max-width: 216px;
    padding: 0 20px; } }

@media print, screen and (max-width: 767px) {
  .fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem:last-of-type,
  .fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem:last-of-type,
  .fs-c-featuredProduct__list .c-itemSlider_node:last-of-type,
  .c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem:last-of-type,
  .c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem:last-of-type,
  .c-itemSlider_wrapper .c-itemSlider_node:last-of-type {
    width: 170px;
    padding-right: 15px; } }

.fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem a,
.fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem a,
.fs-c-featuredProduct__list .c-itemSlider_node a,
.c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem a,
.c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem a,
.c-itemSlider_wrapper .c-itemSlider_node a {
  display: inline-block; }
  @media print, screen and (min-width: 768px) {
    .fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem a,
    .fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem a,
    .fs-c-featuredProduct__list .c-itemSlider_node a,
    .c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem a,
    .c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem a,
    .c-itemSlider_wrapper .c-itemSlider_node a {
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .fs-c-featuredProduct__list .fs-c-productListCarousel__list__item.fs-c-productListItem a:hover,
      .fs-c-featuredProduct__list .fs-c-productList__list__item.fs-c-productListItem a:hover,
      .fs-c-featuredProduct__list .c-itemSlider_node a:hover,
      .c-itemSlider_wrapper .fs-c-productListCarousel__list__item.fs-c-productListItem a:hover,
      .c-itemSlider_wrapper .fs-c-productList__list__item.fs-c-productListItem a:hover,
      .c-itemSlider_wrapper .c-itemSlider_node a:hover {
        opacity: .5; } }

.fs-c-featuredProduct__list .c-itemSlider_nodeLink,
.c-itemSlider_wrapper .c-itemSlider_nodeLink {
  display: inline-block; }
  @media print, screen and (min-width: 768px) {
    .fs-c-featuredProduct__list .c-itemSlider_nodeLink,
    .c-itemSlider_wrapper .c-itemSlider_nodeLink {
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .fs-c-featuredProduct__list .c-itemSlider_nodeLink:hover,
      .c-itemSlider_wrapper .c-itemSlider_nodeLink:hover {
        opacity: .5; } }

.fs-c-featuredProduct__list .fs-c-productListItem__imageContainer img,
.fs-c-featuredProduct__list .c-itemSlider_nodeImg img,
.c-itemSlider_wrapper .fs-c-productListItem__imageContainer img,
.c-itemSlider_wrapper .c-itemSlider_nodeImg img {
  width: 100%; }

.fs-c-featuredProduct__list .fs-c-productName__copy,
.fs-c-featuredProduct__list .c-itemSlider_nodeCategory,
.c-itemSlider_wrapper .fs-c-productName__copy,
.c-itemSlider_wrapper .c-itemSlider_nodeCategory {
  display: block;
  margin-top: 15px;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.3;
  color: #adadad; }

.fs-c-featuredProduct__list .fs-c-productName__name,
.fs-c-featuredProduct__list .c-itemSlider_nodeName,
.c-itemSlider_wrapper .fs-c-productName__name,
.c-itemSlider_wrapper .c-itemSlider_nodeName {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1.3;
  white-space: normal; }

.fs-c-featuredProduct__list .fs-c-productPrices,
.fs-c-featuredProduct__list .c-itemSlider_nodePrice,
.c-itemSlider_wrapper .fs-c-productPrices,
.c-itemSlider_wrapper .c-itemSlider_nodePrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.3; }
  .fs-c-featuredProduct__list .fs-c-productPrices::after,
  .fs-c-featuredProduct__list .c-itemSlider_nodePrice::after,
  .c-itemSlider_wrapper .fs-c-productPrices::after,
  .c-itemSlider_wrapper .c-itemSlider_nodePrice::after {
    content: none; }

.fs-c-featuredProduct__list .fs-c-productMarks,
.c-itemSlider_wrapper .fs-c-productMarks {
  display: none; }

.fs-c-productMark__mark {
  font-size: 10px;
  letter-spacing: .02em;
  padding: 0; }

.fs-c-productMark__item {
  margin-right: 18px; }

.c-label-new {
  color: #ff2626; }

.c-label-standard {
  color: #539fc7; }

.c-label-limited {
  color: #005d2a; }

.c-label-restock {
  color: #539fc7; }

.c-label-sold {
  color: #6a6a6a; }

.c-brandlogo-sds {
  width: 121px;
  height: 74px; }

.c-brandlogo-aac {
  width: 150px;
  height: 74px; }

.c-brandlogo-noc {
  height: 74px; }

.c-brandlogo-cku {
  width: 90px;
  height: 58px; }

.c-brandlogo-kinto,
.c-brandlogo-onawa,
.c-brandlogo-amvel {
  height: 66px; }

.detailLogo [class^="c-brandlogo-"] {
  display: none; }

.fs-c-productCarouselMainImage__expandButton,
.fs-c-stockSignLegend__legend,
.fs-c-productListItem__viewMoreImageButton,
.fs-c-productListItem__control.fs-c-buttonContainer,
.fs-c-productListItem__productDescription,
.fs-c-productPrice__addon {
  display: none; }

.flywheel-recommend__frame {
  overflow: hidden; }
  @media print, screen and (max-width: 767px) {
    .flywheel-recommend__frame {
      margin-top: 64px; } }
  @media print, screen and (min-width: 768px) {
    .flywheel-recommend__frame {
      margin-top: 120px; } }
  .flywheel-recommend__frame .fs-p-heading--lv2 {
    font-size: 0; }
    @media print, screen and (max-width: 767px) {
      .flywheel-recommend__frame .fs-p-heading--lv2 {
        margin-bottom: 30px; } }
    @media print, screen and (min-width: 768px) {
      .flywheel-recommend__frame .fs-p-heading--lv2 {
        margin-bottom: 60px; } }
    .flywheel-recommend__frame .fs-p-heading--lv2::before, .flywheel-recommend__frame .fs-p-heading--lv2::after {
      display: block;
      text-align: center; }
    .flywheel-recommend__frame .fs-p-heading--lv2::before {
      font-size: 18px;
      font-weight: bold;
      letter-spacing: .2em; }
    .flywheel-recommend__frame .fs-p-heading--lv2::after {
      font-size: 12px;
      letter-spacing: .08em; }
      @media print, screen and (max-width: 767px) {
        .flywheel-recommend__frame .fs-p-heading--lv2::after {
          margin-top: 14px; } }
      @media print, screen and (min-width: 768px) {
        .flywheel-recommend__frame .fs-p-heading--lv2::after {
          margin-top: 22px; } }

[data-frame-id="ranking_std"],
[data-frame-id="ranking_aac"] {
  display: none; }
  [data-frame-id="ranking_std"] .fs-p-heading--lv2::before,
  [data-frame-id="ranking_aac"] .fs-p-heading--lv2::before {
    content: 'ランキング'; }
  [data-frame-id="ranking_std"] .fs-p-heading--lv2::after,
  [data-frame-id="ranking_aac"] .fs-p-heading--lv2::after {
    content: 'RANKING'; }

.fs-body-category-standardsupply [data-frame-id="ranking_std"] {
  display: block; }

.fs-body-category-artsandcrafts [data-frame-id="ranking_aac"] {
  display: block; }

[data-frame-id="recommend_std"],
[data-frame-id="recommend_aac"] {
  display: none;
  position: relative; }
  [data-frame-id="recommend_std"] .fs-p-heading--lv2::before,
  [data-frame-id="recommend_aac"] .fs-p-heading--lv2::before {
    content: 'おすすめのアイテム'; }
  [data-frame-id="recommend_std"] .fs-p-heading--lv2::after,
  [data-frame-id="recommend_aac"] .fs-p-heading--lv2::after {
    content: 'RECOMMEND ITEMS'; }

.fs-body-category-standardsupply [data-frame-id="recommend_std"].is-active {
  display: block; }

.fs-body-category-artsandcrafts [data-frame-id="recommend_aac"].is-active {
  display: block; }

.brandNewarrival_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  border-color: #adadad;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  @media print, screen and (max-width: 767px) {
    .brandNewarrival_more {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .brandNewarrival_more:hover {
      background-color: #2c2c2c;
      border-color: #2c2c2c;
      color: #ffffff; } }

[data-frame-id="recommend_detail"] .fs-p-heading--lv2::before {
  content: 'おすすめのアイテム'; }

[data-frame-id="recommend_detail"] .fs-p-heading--lv2::after {
  content: 'RECOMMEND ITEMS'; }

[data-frame-id="history"] .fs-p-heading--lv2::before {
  content: '最近チェックしたアイテム'; }

[data-frame-id="history"] .fs-p-heading--lv2::after {
  content: 'CHECKED ITEMS'; }

.fr3-productListStatic {
  gap: 0 !important;
  font-size: 0; }
  @media print, screen and (max-width: 767px) {
    .fr3-productListStatic {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      overflow: auto; } }
  @media print, screen and (min-width: 768px) {
    .fr3-productListStatic {
      min-width: 1024px;
      max-width: 1200px;
      display: block !important;
      position: relative;
      padding: 0 60px !important;
      margin: 48px auto 0; }
      .fr3-productListStatic .slick-arrow {
        display: inline-block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 29px;
        height: 29px;
        background-color: #ffffff;
        border-radius: 50%;
        z-index: 1001;
        width: 29px;
        -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16));
        filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16)); } }
    @media print, screen and (min-width: 768px) and (min-width: 768px) {
      .fr3-productListStatic .slick-arrow {
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease; }
        .fr3-productListStatic .slick-arrow:hover {
          opacity: .5; } }
  @media print, screen and (min-width: 768px) {
        .fr3-productListStatic .slick-arrow::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 5px;
          height: 9px;
          background-image: url(../svg/slider_arrow-b.svg);
          background-size: 5px 9px;
          background-repeat: no-repeat;
          background-position: center; }
      .fr3-productListStatic .slick-prev {
        left: 30px; }
        .fr3-productListStatic .slick-prev::before {
          -webkit-transform: translate(-50%, -50%) rotate(180deg);
          -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg); }
      .fr3-productListStatic .slick-next {
        right: 30px; }
        .fr3-productListStatic .slick-next::before {
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
  [data-frame-id="ranking_std"] .fr3-productListStatic,
  [data-frame-id="ranking_aac"] .fr3-productListStatic {
    white-space: nowrap; }
  [data-frame-id="recommend_std"] .fr3-productListStatic,
  [data-frame-id="recommend_aac"] .fr3-productListStatic {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
    @media print, screen and (max-width: 767px) {
      [data-frame-id="recommend_std"] .fr3-productListStatic,
      [data-frame-id="recommend_aac"] .fr3-productListStatic {
        gap: 64px 15px !important;
        padding: 0 15px !important; } }
    @media print, screen and (min-width: 768px) {
      [data-frame-id="recommend_std"] .fr3-productListStatic,
      [data-frame-id="recommend_aac"] .fr3-productListStatic {
        gap: 80px 64px !important; } }
  @media print, screen and (max-width: 767px) {
    .fr3-productListStatic .fr3-item {
      width: 155px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      padding-left: 15px; } }
  @media print, screen and (max-width: 374px) {
    .fr3-productListStatic .fr3-item {
      width: 145px; } }
  @media print, screen and (min-width: 768px) {
    .fr3-productListStatic .fr3-item {
      max-width: 216px;
      width: 20%;
      padding: 0 20px; } }
  @media print, screen and (max-width: 767px) {
    .fr3-productListStatic .fr3-item:last-of-type {
      width: 170px;
      padding-right: 15px; } }
  .fr3-productListStatic .fr3-item a {
    display: inline-block; }
    @media print, screen and (min-width: 768px) {
      .fr3-productListStatic .fr3-item a {
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease; }
        .fr3-productListStatic .fr3-item a:hover {
          opacity: .5; } }
  [data-frame-id="recommend_std"] .fr3-productListStatic .fr3-item,
  [data-frame-id="recommend_aac"] .fr3-productListStatic .fr3-item {
    padding: 0; }
    @media print, screen and (max-width: 767px) {
      [data-frame-id="recommend_std"] .fr3-productListStatic .fr3-item,
      [data-frame-id="recommend_aac"] .fr3-productListStatic .fr3-item {
        width: calc(50% - 15px / 2); } }
    @media print, screen and (min-width: 768px) {
      [data-frame-id="recommend_std"] .fr3-productListStatic .fr3-item,
      [data-frame-id="recommend_aac"] .fr3-productListStatic .fr3-item {
        width: calc(25% - (64px * 3) / 4); } }
  .fr3-productListStatic .fr3-item__productName {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    line-height: 1.3;
    white-space: normal; }
  .fr3-productListStatic .fr3-item__productPrice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px; }
    .fr3-productListStatic .fr3-item__productPrice::after {
      content: none; }
  .fr3-productListStatic .fr3-item__productPrice__price {
    font-size: 12px !important;
    letter-spacing: .08em;
    line-height: 1.3; }
  .fr3-productListStatic .fr3-item__productPrice__addon {
    display: none; }

.fr3-item__rank {
  width: 26px !important;
  height: 26px !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 16px !important;
  background-color: #999999 !important; }
  .fr3-item__rank[data-item-rank="1"] {
    background-color: #E1D358 !important; }
  .fr3-item__rank[data-item-rank="2"] {
    background-color: #C0C0C0 !important; }
  .fr3-item__rank[data-item-rank="3"] {
    background-color: #BB9585 !important; }

.brandPickup {
  background-color: #F8F8F8;
  display: none; }
  .fs-body-category-standardsupply .brandPickup,
  .fs-body-category-artsandcrafts .brandPickup {
    display: block; }
  @media print, screen and (max-width: 767px) {
    .brandPickup {
      padding: 64px 0; } }
  @media print, screen and (min-width: 768px) {
    .brandPickup {
      padding: 80px 0; } }
  .brandPickup .fs-p-heading--lv2 {
    display: none;
    margin-top: 0; }

.brandPickup_block .flywheel-recommend__frame {
  display: none;
  margin-top: 0; }

.fs-body-category-standardsupply .brandPickup_block [data-frame-id="pickup1_std"], .fs-body-category-standardsupply
.brandPickup_block [data-frame-id="pickup2_std"] {
  display: block; }

.fs-body-category-artsandcrafts .brandPickup_block [data-frame-id="pickup1_aac"], .fs-body-category-artsandcrafts
.brandPickup_block [data-frame-id="pickup2_aac"] {
  display: block; }

.brandPickup_block .fr3-productListStatic {
  margin-top: 0; }
  @media print, screen and (min-width: 768px) {
    .brandPickup_block .fr3-productListStatic {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; } }
  @media print, screen and (min-width: 768px) and (max-width: 767px) {
    .brandPickup_block .fr3-productListStatic {
      gap: 64px 15px !important;
      padding: 0 15px !important; } }
  @media print, screen and (min-width: 768px) and (min-width: 768px) {
    .brandPickup_block .fr3-productListStatic {
      gap: 80px 64px !important; } }

@media print, screen and (min-width: 768px) {
  .brandPickup_block .fr3-item {
    padding: 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 767px) {
    .brandPickup_block .fr3-item {
      width: calc(50% - 15px / 2); } }
  @media print, screen and (min-width: 768px) and (min-width: 768px) {
    .brandPickup_block .fr3-item {
      width: calc(25% - (64px * 3) / 4); } }

@media print, screen and (max-width: 767px) {
  .brandPickup_block + .brandPickup_block {
    margin-top: 64px; } }

@media print, screen and (min-width: 768px) {
  .brandPickup_block + .brandPickup_block {
    margin-top: 120px; } }

.brandPickup_blockTitle {
  font-size: 16px;
  letter-spacing: 0.24em;
  text-align: center; }
  @media print, screen and (max-width: 767px) {
    .brandPickup_blockTitle {
      margin-bottom: 24px; } }
  @media print, screen and (min-width: 768px) {
    .brandPickup_blockTitle {
      margin-bottom: 40px; } }

.brandPickup_blockMore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  border-color: #adadad;
  background-color: #ffffff; }
  @media print, screen and (max-width: 767px) {
    .brandPickup_blockMore {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .brandPickup_blockMore:hover {
      background-color: #2c2c2c;
      border-color: #2c2c2c;
      color: #ffffff; } }
  @media print, screen and (max-width: 767px) {
    .brandPickup_blockMore {
      margin-top: 30px; } }
  @media print, screen and (min-width: 768px) {
    .brandPickup_blockMore {
      margin-top: 40px; } }

.fs-c-productMarks {
  margin-bottom: 22px; }

.fs-c-productPrices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  letter-spacing: .08em; }

.fs-c-productPrice--selling {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 12px; }

.fs-c-productPrice--listed + .fs-c-productPrice--selling {
  color: #ff2626;
  padding-left: 8px; }

.fs-c-productPrice--listed {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #adadad;
  text-decoration: line-through;
  font-size: 10px; }

@media print, screen and (max-width: 767px) {
  .fs-c-productPrices {
    margin-top: 8px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-productPrices {
    margin-top: 20px; } }

.fs-c-productPrices::after {
  content: '（税込）';
  font-size: 10px;
  letter-spacing: .08em;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

#header {
  background-color: #ffffff; }

@media print, screen and (max-width: 767px) {
  .fs-l-main {
    margin-top: 90px; } }

@media print, screen and (min-width: 768px) {
  .fs-l-main {
    margin-top: 119px; } }

@media print, screen and (max-width: 767px) {
  .detailWrapper {
    padding: 0 0 36px; } }

@media print, screen and (min-width: 768px) {
  .detailWrapper {
    max-width: 1160px;
    padding: 40px 60px 0;
    margin: auto; } }

@media print, screen and (min-width: 768px) {
  .fs-l-productLayout.fs-system-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%; } }

@media print, screen and (max-width: 767px) {
  .fs-l-productLayout__item.fs-l-productLayout__item--1 {
    width: 100%; } }

@media print, screen and (min-width: 768px) {
  .fs-l-productLayout__item.fs-l-productLayout__item--1 {
    width: calc( 100% - 552px); } }

@media print, screen and (max-width: 767px) {
  .fs-l-productLayout__item.fs-l-productLayout__item--2 {
    margin: 40px 30px 0; } }

@media print, screen and (min-width: 768px) {
  .fs-l-productLayout__item.fs-l-productLayout__item--2 {
    width: 552px;
    padding-left: 157px;
    -ms-flex-negative: 0;
    flex-shrink: 0; } }

@media print, screen and (max-width: 767px) {
  .fs-l-productLayout__item.fs-l-productLayout__item--3 {
    padding-bottom: 36px;
    margin: 22px 30px 0; } }

@media print, screen and (min-width: 768px) {
  .fs-l-productLayout__item.fs-l-productLayout__item--3 {
    width: 100%;
    padding-bottom: 120px;
    margin-top: 70px;
    border-bottom: 1px solid #efefef; } }

.detailSlider_area {
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease; }
  .detailSlider_area.slick-initialized {
    opacity: 1; }
  @media print, screen and (max-width: 767px) {
    .detailSlider_area {
      position: relative; }
      .detailSlider_area .slick-arrow {
        display: inline-block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 29px;
        height: 29px;
        background-color: #ffffff;
        border-radius: 50%;
        z-index: 1001;
        width: 29px;
        -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16));
        filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16)); } }
    @media print, screen and (max-width: 767px) and (min-width: 768px) {
      .detailSlider_area .slick-arrow {
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease; }
        .detailSlider_area .slick-arrow:hover {
          opacity: .5; } }
  @media print, screen and (max-width: 767px) {
        .detailSlider_area .slick-arrow::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 5px;
          height: 9px;
          background-image: url(../svg/slider_arrow-b.svg);
          background-size: 5px 9px;
          background-repeat: no-repeat;
          background-position: center; }
      .detailSlider_area .slick-prev {
        left: 15px; }
        .detailSlider_area .slick-prev::before {
          -webkit-transform: translate(-50%, -50%) rotate(180deg);
          -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg); }
      .detailSlider_area .slick-next {
        right: 15px; }
        .detailSlider_area .slick-next::before {
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
  @media print, screen and (min-width: 768px) {
    .detailSlider_area {
      position: relative; }
      .detailSlider_area .slick-arrow {
        display: inline-block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 29px;
        height: 29px;
        background-color: #ffffff;
        border-radius: 50%;
        z-index: 1001;
        width: 29px;
        -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16));
        filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.16)); } }
    @media print, screen and (min-width: 768px) and (min-width: 768px) {
      .detailSlider_area .slick-arrow {
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease; }
        .detailSlider_area .slick-arrow:hover {
          opacity: .5; } }
  @media print, screen and (min-width: 768px) {
        .detailSlider_area .slick-arrow::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 5px;
          height: 9px;
          background-image: url(../svg/slider_arrow-b.svg);
          background-size: 5px 9px;
          background-repeat: no-repeat;
          background-position: center; }
      .detailSlider_area .slick-prev {
        left: -53px; }
        .detailSlider_area .slick-prev::before {
          -webkit-transform: translate(-50%, -50%) rotate(180deg);
          -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg); }
      .detailSlider_area .slick-next {
        right: -53px; }
        .detailSlider_area .slick-next::before {
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
  @media print, screen and (max-width: 767px) {
    .detailSlider_area .slick-arrow {
      top: calc( 50% - 10px); } }
  @media print, screen and (min-width: 768px) {
    .detailSlider_area .slick-arrow {
      top: calc( 50% - 18px); } }

.detailSliderThumbnailWrap {
  position: relative; }

.detailSliderThumbnail_arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  margin-top: -24px;
  width: 29px;
  height: 29px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 1001;
  width: 29px;
  -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.06));
  filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.06)); }
  @media print, screen and (min-width: 768px) {
    .detailSliderThumbnail_arrow {
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .detailSliderThumbnail_arrow:hover {
        opacity: .5; } }
  @media print, screen and (min-width: 768px) {
    .detailSliderThumbnail_arrow {
      display: none; } }
  .detailSliderThumbnail_arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 5px;
    height: 9px;
    background-image: url(../svg/slider_arrow-b.svg);
    background-size: 5px 9px;
    background-repeat: no-repeat;
    background-position: center; }

@media print, screen and (max-width: 767px) {
  .detailSliderThumbnail_arrow-prev {
    left: 15px; } }

@media print, screen and (min-width: 768px) {
  .detailSliderThumbnail_arrow-prev {
    left: -53px; } }

.detailSliderThumbnail_arrow-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg); }

@media print, screen and (max-width: 767px) {
  .detailSliderThumbnail_arrow-next {
    right: 15px; } }

@media print, screen and (min-width: 768px) {
  .detailSliderThumbnail_arrow-next {
    right: -53px; } }

.detailSliderThumbnail_arrow-next::before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

@media print, screen and (max-width: 767px) {
  .detailSliderThumbnail {
    white-space: nowrap;
    overflow-x: scroll;
    margin: 20px 30px 0;
    padding-bottom: 10px; } }

@media print, screen and (min-width: 768px) {
  .detailSliderThumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin: 40px 0 0;
    padding-bottom: 15px; } }

.detailSliderThumbnail .ps__rail-x, .detailSliderThumbnail .ps__rail-y {
  height: 6px !important;
  opacity: 0.6 !important;
  background-color: #ebebeb !important; }

.detailSliderThumbnail .ps__thumb-x, .detailSliderThumbnail .ps__thumb-y {
  bottom: 0 !important;
  height: 6px !important; }

.detailSliderThumbnail_node {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  margin-bottom: 8px; }
  @media print, screen and (max-width: 767px) {
    .detailSliderThumbnail_node {
      width: 66px;
      margin-right: 15px; }
      .detailSliderThumbnail_node:last-of-type {
        margin-right: 0; } }
  @media print, screen and (min-width: 768px) {
    .detailSliderThumbnail_node {
      width: calc((100% - 56px) / 8);
      margin-left: 8px;
      margin-bottom: 8px; }
      .detailSliderThumbnail_node:nth-of-type(8n+1) {
        margin-left: 0; } }
  .detailSliderThumbnail_node .color {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: .08em;
    white-space: normal;
    line-height: 1.1;
    text-align: center; }

.detailSliderThumbnail_nodeImg {
  position: relative; }
  .detailSliderThumbnail_nodeImg img {
    width: 100%; }
  .is-selected .detailSliderThumbnail_nodeImg::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #005d2a; }

.variationButton_area {
  position: relative; }
  @media print, screen and (min-width: 768px) {
    .variationButton_area {
      display: none; } }
  .variationButton_area::before {
    display: block;
    position: absolute;
    top: -70px;
    left: 0;
    content: "";
    width: 100%;
    height: 70px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, #fff), to(#fff));
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 50%, #fff 100%);
    background: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 50%, #fff 100%);
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 50%, #fff 100%); }
  .is-open.sp-ofHidden .variationButton_area::before {
    display: none; }

.variationButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  border-color: #adadad;
  background-color: #ffffff;
  color: #6a6a6a;
  font-weight: normal; }
  @media print, screen and (max-width: 767px) {
    .variationButton {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .variationButton:hover {
      background-color: #2c2c2c;
      border-color: #2c2c2c;
      color: #ffffff; } }

.variationButton_icon {
  position: relative;
  padding-left: 18px; }
  .variationButton_icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 1px;
    background-color: #6a6a6a; }
    .variationButton_icon span:nth-of-type(1) {
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .variationButton_icon span:nth-of-type(2) {
      -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
      transform: translate(-50%, -50%) rotate(90deg); }
  .is-open.sp-ofHidden .variationButton_icon span:nth-of-type(2) {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0); }

.fs-c-productChooseVariation {
  position: relative;
  margin-top: 60px; }
  .fs-c-productChooseVariation::before {
    position: absolute;
    top: -28px;
    left: 0;
    content: "カラーを選択";
    font-size: 12px;
    letter-spacing: .08em; }

.sp-ofHidden .fs-c-productChooseVariation__variation {
  overflow: hidden; }
  @media print, screen and (max-width: 767px) {
    .sp-ofHidden .fs-c-productChooseVariation__variation {
      height: 375px; } }
  @media print, screen and (max-width: 374px) {
    .sp-ofHidden .fs-c-productChooseVariation__variation {
      height: 320px; } }

.sp-ofHidden.is-open .fs-c-productChooseVariation__variation {
  height: auto; }

.fs-c-variationMatrix.fs-c-variationMatrix--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  @media print, screen and (max-width: 767px) {
    .sp-ofHidden .fs-c-variationMatrix.fs-c-variationMatrix--column {
      margin-bottom: 30px; } }

.fs-c-variationMatrix__col {
  display: block;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0; }
  @media print, screen and (max-width: 767px) {
    .fs-c-variationMatrix__col {
      width: calc( (100% - 45px) / 4);
      margin-left: 15px; }
      .fs-c-variationMatrix__col:nth-of-type(4n+1) {
        margin-left: 0; }
      .fs-c-variationMatrix__col:nth-of-type(n+5) {
        margin-top: 15px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-variationMatrix__col {
      width: 66px;
      margin-left: 16px; }
      .fs-c-variationMatrix__col:nth-of-type(5n+1) {
        margin-left: 0; }
      .fs-c-variationMatrix__col:nth-of-type(n+6) {
        margin-top: 16px; } }

.fs-c-variationMatrix__col__thumbnail {
  position: relative; }
  .fs-c-variationMatrix__col__thumbnail img {
    max-width: none;
    width: 100%; }
  .fs-c-variationMatrix__col__thumbnail::after {
    position: absolute;
    top: 0;
    left: 0;
    content: none;
    width: 100%;
    height: 100%;
    border: 1px solid #005d2a; }
  .is-selected .fs-c-variationMatrix__col__thumbnail::after {
    content: ""; }

.fs-c-variationMatrix__radio {
  display: none; }

.fs-c-variationMatrix__col__variationPanels.fs-c-variationMatrix__lane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0; }

.fs-c-variationMatrix__item {
  width: 100%;
  height: 100%; }

.fs-c-variationMatrix__panel {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer; }
  .fs-c-variationMatrix__radio:checked + .fs-c-variationMatrix__panel {
    cursor: default; }

.fs-c-variationMatrix__col__variationName {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: center; }
  .is-soldout .fs-c-variationMatrix__col__variationName {
    color: #adadad;
    text-decoration: line-through; }

.fs-c-productPlainImage {
  text-align: center;
  line-height: 1.4; }
  .fs-c-productPlainImage .color, .fs-c-productPlainImage .alt {
    display: block;
    letter-spacing: .08em;
    padding-top: 20px; }
    @media print, screen and (max-width: 767px) {
      .fs-c-productPlainImage .color, .fs-c-productPlainImage .alt {
        font-size: 10px; } }
    @media print, screen and (min-width: 768px) {
      .fs-c-productPlainImage .color, .fs-c-productPlainImage .alt {
        font-size: 12px; } }
  .fs-c-productPlainImage img {
    width: 100%; }

.fs-c-productQuantityAndWishlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 58px; }

@media print, screen and (max-width: 767px) {
  .fs-c-productQuantityAndWishlist__wishlist.fs-c-buttonContainer {
    width: 71.8%;
    height: 40px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-productQuantityAndWishlist__wishlist.fs-c-buttonContainer {
    width: 295px;
    height: 50px; } }

.fs-c-button--removeFromWishList--detail,
.fs-c-button--addToWishList--detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  border-color: #adadad;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-color: #ebebeb;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: normal;
  color: #2c2c2c; }
  @media print, screen and (max-width: 767px) {
    .fs-c-button--removeFromWishList--detail,
    .fs-c-button--addToWishList--detail {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-button--removeFromWishList--detail:hover,
    .fs-c-button--addToWishList--detail:hover {
      background-color: #2c2c2c;
      border-color: #2c2c2c;
      color: #ffffff; } }
  .fs-c-button--removeFromWishList--detail:hover,
  .fs-c-button--addToWishList--detail:hover {
    background-color: #ffffff;
    border-color: #ebebeb;
    color: #2c2c2c; }
  .fs-c-button--removeFromWishList--detail::after,
  .fs-c-button--addToWishList--detail::after {
    display: block;
    position: relative;
    top: -2px;
    content: "";
    width: 16px;
    height: 15px;
    margin-left: 10px;
    background-size: 16px 15px;
    background-repeat: no-repeat;
    background-position: center; }

.fs-c-button--addToWishList--detail:after {
  background-image: url(../svg/heart-b.svg); }

.fs-c-button--removeFromWishList--detail:after {
  background-image: url(../svg/heart-g.svg); }

.fs-c-productQuantityAndWishlist__quantity.fs-c-quantity {
  position: relative;
  max-width: none; }
  @media print, screen and (max-width: 767px) {
    .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity {
      width: 23.2%;
      height: 40px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity {
      width: 82px;
      height: 50px; } }
  .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity::before {
    position: absolute;
    top: -20px;
    left: 0;
    content: '数量';
    font-size: 12px;
    letter-spacing: .08em; }
  .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity::after {
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    width: 6px;
    height: 14px;
    background-image: url(../svg/select_arrow.svg);
    background-size: 6px 14px;
    background-repeat: no-repeat;
    background-position: center; }

.fs-system-quantity-list,
.fs-system-quantity-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-radius: 0;
  border: none;
  background: transparent;
  z-index: 1;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: .08em;
  color: #2c2c2c;
  cursor: pointer; }
  .fs-system-quantity-list::-ms-expand,
  .fs-system-quantity-text::-ms-expand {
    display: none; }
  .fs-system-quantity-list:focus,
  .fs-system-quantity-text:focus {
    outline: none; }

.fs-system-quantity-list:focus {
  border-color: #539fc7;
  -webkit-box-shadow: none;
  box-shadow: none; }

.fs-c-button--subscribeToArrivalNotice--detail.fs-c-button--secondary,
.fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary,
.fs-c-button--addToCart--variation.fs-c-button--primary,
.fs-c-button--addToCart--detail.fs-c-button--primary,
.detailCart_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 100%;
  height: 50px;
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: .08em;
  color: #ffffff; }
  @media print, screen and (max-width: 767px) {
    .fs-c-button--subscribeToArrivalNotice--detail.fs-c-button--secondary,
    .fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary,
    .fs-c-button--addToCart--variation.fs-c-button--primary,
    .fs-c-button--addToCart--detail.fs-c-button--primary,
    .detailCart_button {
      max-width: 100%; } }

.fs-c-button--addToCart--variation.fs-c-button--primary,
.fs-c-button--addToCart--detail.fs-c-button--primary,
.detailCart_button {
  background-color: #005d2a;
  border: 1px solid #005d2a; }
  @media print, screen and (min-width: 768px) {
    .fs-c-button--addToCart--variation.fs-c-button--primary:hover,
    .fs-c-button--addToCart--detail.fs-c-button--primary:hover,
    .detailCart_button:hover {
      background-color: #ffffff;
      color: #005d2a; } }

.fs-c-button--subscribeToArrivalNotice--detail.fs-c-button--secondary,
.fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary {
  background-color: #6a6a6a;
  border: 1px solid #6a6a6a; }
  @media print, screen and (min-width: 768px) {
    .fs-c-button--subscribeToArrivalNotice--detail.fs-c-button--secondary:hover,
    .fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary:hover {
      background-color: #ffffff;
      color: #6a6a6a; } }

.fs-c-productNameHeading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4; }

.fs-c-productNameHeading__copy {
  display: none; }

.fs-c-productNotice--outOfStock {
  display: none; }

.fs-c-productPrice--selling {
  font-size: 18px; }
  .fs-c-productPrice--listed + .fs-c-productPrice--selling {
    padding-left: 16px; }

.fs-c-productPrice--listed {
  font-size: 12px; }

.fs-c-productPointDisplay {
  margin-top: 12px; }

.fs-c-productPointDisplay__label,
.fs-c-productPointDisplay__unit {
  display: none; }

.fs-c-productPointDisplay__quantity {
  font-family: MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  color: #6a6a6a; }

.detailSliderCount {
  position: absolute;
  width: 82px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(248, 248, 248, 0.5);
  border-radius: 20px;
  font-size: 10px; }
  @media print, screen and (max-width: 767px) {
    .detailSliderCount {
      bottom: calc( 20px + 6%);
      left: 15px; } }
  @media print, screen and (min-width: 768px) {
    .detailSliderCount {
      bottom: calc( 36px + 2%);
      left: 7px; } }

.detailSliderCount_bar {
  padding: 0 10px; }

@media print, screen and (max-width: 767px) {
  .detailInfo_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media print, screen and (min-width: 768px) {
  .detailInfo_tab {
    display: none; } }

.detailInfo_tabNode {
  width: 50%;
  padding: 18px 0;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  letter-spacing: .08em;
  color: #adadad;
  border-bottom: 1px solid #efefef;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .detailInfo_tabNode.is-current {
    color: #000000;
    border-bottom: 1px solid #000000; }

.detailInfo_contents {
  font-family: MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: .08em;
  line-height: 1.8; }
  @media print, screen and (max-width: 767px) {
    .detailInfo_contents {
      position: relative;
      margin-top: 35px; } }
  @media print, screen and (min-width: 768px) {
    .detailInfo_contents {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

@media print, screen and (max-width: 767px) {
  .detailInfo_node + .detailInfo_node {
    margin-top: 16px; } }

.detailInfo_node-main {
  font-size: 13px; }
  @media print, screen and (min-width: 768px) {
    .detailInfo_node-main {
      width: calc( 100% - 464px); } }

.detailInfo_node-sub {
  font-size: 12px; }
  @media print, screen and (min-width: 768px) {
    .detailInfo_node-sub {
      width: 464px;
      padding-left: 64px; } }

.detailInfo_nodeCell + .detailInfo_nodeCell,
.detailInfo_pulldown + .detailInfo_nodeCell {
  margin-top: 20px; }

@media print, screen and (min-width: 768px) {
  .detailInfo_node-sub .detailInfo_nodeCell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.detailInfo_nodeCell a {
  display: inline-block;
  color: #539fc7; }
  @media print, screen and (min-width: 768px) {
    .detailInfo_nodeCell a {
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .detailInfo_nodeCell a:hover {
        opacity: .5; } }
  @media print, screen and (min-width: 768px) {
    .detailInfo_nodeCell a {
      display: inline-block; } }

.detailInfo_nodeCell em {
  font-style: normal;
  color: #ff2626; }

.detailInfo_nodeCell_head {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 6px; }
  .detailInfo_node-sub .detailInfo_nodeCell_head {
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    @media print, screen and (min-width: 768px) {
      .detailInfo_node-sub .detailInfo_nodeCell_head {
        width: 100px; } }

@media print, screen and (max-width: 767px) {
  .detailInfo_nodeCell_text-topics {
    white-space: nowrap;
    overflow: auto;
    margin: 0 -30px 0 -15px; } }

@media print, screen and (min-width: 768px) {
  .detailInfo_nodeCell_text-topics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 16px;
    width: 100%; } }

@media print, screen and (max-width: 767px) {
  .detailInfo_nodeCell_text-topics a {
    display: inline-block;
    width: 40.58%;
    vertical-align: top; } }

@media print, screen and (min-width: 768px) {
  .detailInfo_nodeCell_text-topics a {
    display: block;
    width: calc(33.33% - 32px / 3); } }

@media print, screen and (max-width: 767px) {
  .detailInfo_nodeCell_text-topics a + a {
    margin-left: 15px; } }

@media print, screen and (max-width: 767px) {
  .detailInfo_nodeCell_text-topics a:last-child {
    margin-right: 15px; } }

.detailInfo_nodeCell_text-topics a img {
  width: 100%; }

.detailInfo_nodeCell_text-topics i {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.6;
  color: #000;
  white-space: normal; }

@media print, screen and (max-width: 767px) {
  .detailInfo_More {
    position: relative;
    height: 120px;
    overflow: hidden;
    -webkit-transition: height .3s ease;
    -o-transition: height .3s ease;
    transition: height .3s ease; } }

.detailInfo_MoreInner {
  padding-bottom: 60px; }

.detailInfo_MoreButton {
  background-color: #fff;
  margin-bottom: 0;
  text-align: center;
  font-size: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  -webkit-box-shadow: 0 -3px 10px 3px rgba(255, 255, 255, 0.9);
  box-shadow: 0 -3px 10px 3px rgba(255, 255, 255, 0.9); }
  .detailInfo_MoreButton::before {
    position: absolute;
    top: 16px;
    right: 30%;
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
    transform: translate3d(0, 0, 0) rotate(90deg);
    content: "";
    width: 6px;
    height: 8px;
    background-image: url(../svg/slider_arrow-b.svg);
    background-size: 6px 8px;
    background-repeat: no-repeat;
    background-position: center; }
  .detailInfo_MoreButton::after {
    content: "もっと読む";
    font-size: 12px; }
  .is-open .detailInfo_MoreButton::before {
    -webkit-transform: translate3d(0, 0, 0) rotate(-90deg);
    transform: translate3d(0, 0, 0) rotate(-90deg); }
  .is-open .detailInfo_MoreButton::after {
    content: "閉じる"; }

@media print, screen and (max-width: 767px) {
  .detailInfo_pulldown {
    border-bottom: 1px solid #efefef; } }

.detailInfo_pulldown_head {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .2em; }
  @media print, screen and (max-width: 767px) {
    .detailInfo_pulldown_head {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 50px; } }
  @media print, screen and (max-width: 767px) {
    .detailInfo_pulldown_head::before, .detailInfo_pulldown_head::after {
      position: absolute;
      top: calc( 50% - 1px / 2);
      right: 0;
      content: "";
      width: 10px;
      height: 1px;
      background-color: #6a6a6a; } }
  @media print, screen and (max-width: 767px) {
    .detailInfo_pulldown_head::after {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg);
      -webkit-transition: -webkit-transform .2s ease;
      transition: -webkit-transform .2s ease;
      -o-transition: transform .2s ease;
      transition: transform .2s ease;
      transition: transform .2s ease, -webkit-transform .2s ease; } }
  .detailInfo_pulldown_head.is-open::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0); }

@media print, screen and (max-width: 767px) {
  .detailInfo_pulldown_inner {
    display: none;
    padding-bottom: 20px; } }

.detailLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden; }
  @media print, screen and (max-width: 767px) {
    .detailLogo {
      padding: 46px 0 32px; } }
  @media print, screen and (min-width: 768px) {
    .detailLogo {
      height: 164px;
      background-color: #f8f8f8; } }
  @media print, screen and (max-width: 767px) {
    .detailLogo .c-brandlogo-sds {
      width: 100px;
      height: 60px; } }
  @media print, screen and (max-width: 767px) {
    .detailLogo .c-brandlogo-aac {
      width: 124px;
      height: 60px; } }
  @media print, screen and (max-width: 767px) {
    .detailLogo .c-brandlogo-noc {
      width: 60px;
      height: 60px; } }
  .detailLogo a {
    display: inline-block; }
    @media print, screen and (min-width: 768px) {
      .detailLogo a {
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease; }
        .detailLogo a:hover {
          opacity: .5; } }

.detailModal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  -o-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease; }
  @media print, screen and (min-width: 768px) {
    .detailModal {
      min-width: 1024px; } }
  .is-noteModalOpen .detailModal {
    opacity: 1;
    visibility: visible; }

.detailModal_inner {
  position: relative;
  font-family: MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }
  @media print, screen and (max-width: 767px) {
    .detailModal_inner {
      width: 100%;
      height: 100%;
      padding: 62px 15px 40px; } }
  @media print, screen and (min-width: 768px) {
    .detailModal_inner {
      max-width: 672px;
      width: 100%;
      min-height: 500px;
      height: 78%; } }

.detailModal_contents {
  height: 100%;
  background-color: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  @media print, screen and (max-width: 767px) {
    .detailModal_contents {
      padding: 40px 15px; } }
  @media print, screen and (min-width: 768px) {
    .detailModal_contents {
      padding: 78px; } }

.detailModal_title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .2em;
  text-align: center; }
  @media print, screen and (max-width: 767px) {
    .detailModal_title {
      margin-bottom: 30px; } }
  @media print, screen and (min-width: 768px) {
    .detailModal_title {
      margin-bottom: 60px; } }

.detailModal_navNode + .detailModal_navNode {
  margin-top: 8px; }

@media print, screen and (max-width: 767px) {
  .detailModal_block {
    padding: 30px 0 0; } }

@media print, screen and (min-width: 768px) {
  .detailModal_block {
    padding: 30px 0 26px; } }

.detailModal_link {
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.6;
  color: #539fc7; }

.detailModal_blockTitle {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1.6; }

.detailModal_blockText {
  border-left: 1px solid #ebebeb;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.6; }
  @media print, screen and (max-width: 767px) {
    .detailModal_blockText {
      padding-left: 18px; } }
  @media print, screen and (min-width: 768px) {
    .detailModal_blockText {
      padding-left: 24px; } }
  .detailModal_blockText ul {
    counter-reset: number 0; }
    * + .detailModal_blockText ul {
      margin-top: 20px; }
  .detailModal_blockText li {
    padding-left: 1em;
    text-indent: -1em; }
    .detailModal_blockText li::before {
      counter-increment: number 1;
      content: counter(number) " "; }

.detailModal_close {
  position: absolute;
  content: "";
  background-image: url(../svg/close-w.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }
  @media print, screen and (max-width: 767px) {
    .detailModal_close {
      top: 18px;
      right: 7px;
      width: 28px;
      height: 28px;
      background-size: 13px 13px; } }
  @media print, screen and (min-width: 768px) {
    .detailModal_close {
      top: 0;
      right: -95px;
      width: 29px;
      height: 29px;
      background-size: 29px 29px; } }

@media print, screen and (max-width: 767px) {
  .fs-c-modal__header {
    padding: 40px 15px 0; } }

@media print, screen and (min-width: 768px) {
  .fs-c-modal__header {
    width: 672px;
    padding: 80px 80px 0; } }

@media print, screen and (max-width: 767px) {
  .fs-c-modal__contents {
    padding: 0 15px 40px; } }

@media print, screen and (min-width: 768px) {
  .fs-c-modal__contents {
    width: 672px;
    padding: 0 80px 80px; } }

.fs-c-modal__header {
  display: block; }

.fs-c-modal__title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .2em;
  text-align: center; }

.fs-c-stockNotificationsProduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px; }

.fs-c-productName__copy {
  display: none; }

.fs-c-productName__name {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1.75; }

.fs-c-stockNotificationsProduct {
  padding-bottom: 22px;
  border-bottom: 1px solid #ebebeb; }

.fs-c-stockNotificationsProduct__productName {
  padding-left: 24px; }

.fs-c-productName__variation {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1.95; }

.fs-c-stockNotificationsMessage {
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8; }
  @media print, screen and (max-width: 767px) {
    .fs-c-stockNotificationsMessage {
      margin-top: 22px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-stockNotificationsMessage {
      margin-top: 35px; } }

.fs-c-stockNotificationsRegisterField {
  margin-top: 20px; }
  .fs-c-stockNotificationsRegisterField table {
    width: 100%; }
  .fs-c-stockNotificationsRegisterField th, .fs-c-stockNotificationsRegisterField td {
    display: block;
    padding: 0; }

.fs-c-inputTable__headerCell {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .08em;
  text-align: left; }

.fs-c-inputTable__dataCell input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-radius: 0;
  border: none;
  background: transparent;
  z-index: 1;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  border-color: #efefef;
  height: 50px;
  padding: 0 16px;
  border-radius: 4px;
  background: #efefef;
  font-size: 13px; }
  .fs-c-inputTable__dataCell input::-ms-expand {
    display: none; }
  .fs-c-inputTable__dataCell input:focus {
    outline: none; }
  .fs-c-inputTable__dataCell input.is-error {
    border-color: #ff2626;
    background: rgba(255, 38, 38, 0.05); }

.fs-c-inputTable__dataCell .fs-c-assist.is-error .fs-c-assist__message {
  font-size: 12px;
  letter-spacing: .08em;
  color: #ff2626; }
  .fs-c-inputTable__dataCell .fs-c-assist.is-error .fs-c-assist__message::before {
    content: "";
    width: 3px;
    height: 13px;
    margin-right: 8px;
    background-image: url(../../assets/svg/icon-error.svg);
    background-repeat: no-repeat;
    background-size: 3px 13px;
    background-position: center; }

.fs-c-button--subscribeToArrivalNotice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  background-color: #005d2a;
  border: 1px solid #005d2a;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  width: 250px;
  pointer-events: none;
  background-color: #6a6a6a;
  border: 1px solid #6a6a6a; }
  @media print, screen and (max-width: 767px) {
    .fs-c-button--subscribeToArrivalNotice {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-button--subscribeToArrivalNotice:hover {
      background-color: #ffffff;
      color: #005d2a; } }
  @media print, screen and (max-width: 767px) {
    .fs-c-button--subscribeToArrivalNotice {
      margin: 32px auto 0; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-button--subscribeToArrivalNotice {
      margin: 40px auto 0; } }
  .fs-c-button--subscribeToArrivalNotice.is-active {
    background-color: #005d2a;
    border: 1px solid #005d2a;
    pointer-events: auto; }
  .fs-c-button--subscribeToArrivalNotice.is-active:hover {
    background-color: #ffffff; }

.fs-c-privacyPolicyAgreeField {
  position: relative;
  padding-bottom: 30px;
  text-align: center;
  margin-top: 40px; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox {
    margin: 0; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__label {
    position: static; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkMark {
    width: 19px;
    height: 19px;
    margin-right: 16px;
    border-radius: 50%;
    border: 1px solid #adadad; }
    .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkMark::before {
      top: 2px;
      left: 1px;
      font-size: 12px; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
    background: #ffffff; }
    .fs-c-privacyPolicyAgreeField .fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #539fc7;
      border-color: #539fc7;
      top: 4px;
      left: 4px; }
  .fs-c-privacyPolicyAgreeField .fs-c-checkbox__labelText {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .08em;
    line-height: 1.4; }
    .fs-c-privacyPolicyAgreeField .fs-c-checkbox__labelText a {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      text-decoration: underline;
      font-weight: normal;
      color: #539fc7; }
      @media print, screen and (max-width: 374px) {
        .fs-c-privacyPolicyAgreeField .fs-c-checkbox__labelText a {
          font-size: 11px; } }

@media print, screen and (max-width: 767px) {
  .fs-c-modal {
    padding: 62px 0 40px; } }

.fs-c-modal__inner {
  border-radius: 0;
  margin: auto; }
  @media print, screen and (max-width: 767px) {
    .fs-c-modal__inner {
      margin: 0 15px;
      width: 100%; } }

.fs-c-modal__close {
  display: block;
  position: absolute; }
  @media print, screen and (max-width: 767px) {
    .fs-c-modal__close {
      top: -42px;
      right: 0;
      width: 20px;
      height: 20px; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-modal__close {
      top: 0;
      right: -94px;
      width: 30px;
      height: 30px; } }
  .fs-c-modal__close::before, .fs-c-modal__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    height: 1px;
    background-color: #ffffff; }
    @media print, screen and (max-width: 767px) {
      .fs-c-modal__close::before, .fs-c-modal__close::after {
        width: 25px; } }
    @media print, screen and (min-width: 768px) {
      .fs-c-modal__close::before, .fs-c-modal__close::after {
        width: 39px; } }
  .fs-c-modal__close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg); }
  .fs-c-modal__close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }

@media print, screen and (min-width: 768px) {
  .fs-c-inputTable__headerCell {
    margin: 0; } }

.fs-c-mark--preorder {
  display: inline-block;
  margin-top: 10px; }
  .fs-c-mark--preorder .fs-c-mark__label {
    font-size: 0; }
    .fs-c-mark--preorder .fs-c-mark__label::after {
      content: 'RESERVE';
      font-size: 10px;
      letter-spacing: .02em;
      padding: 0;
      color: #A09408; }

.fs-c-productPreorderMessage {
  margin-top: 16px; }
  .fs-c-productPreorderMessage p {
    color: #FF2626;
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold; }

@media print, screen and (max-width: 767px) {
  .detailInfo_topics {
    margin-top: 64px; } }

@media print, screen and (min-width: 768px) {
  .detailInfo_topics {
    margin-top: 80px; } }

.detailInfo_topics .detailInfo_nodeCell {
  position: relative; }

@media print, screen and (max-width: 767px) {
  .detailInfo_topics .detailInfo_nodeCell_text {
    margin-top: 32px; } }

@media print, screen and (min-width: 768px) {
  .detailInfo_topics .detailInfo_nodeCell_text {
    margin-top: 24px; } }

.detailInfo_topicsMore {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  line-height: 1.8;
  color: #539fc7; }
  @media print, screen and (min-width: 768px) {
    .detailInfo_topicsMore {
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .detailInfo_topicsMore:hover {
        opacity: .5; } }

@media print, screen and (max-width: 767px) {
  .detailTab {
    margin-top: 40px; } }

@media print, screen and (min-width: 768px) {
  .detailTab {
    margin-top: 80px; } }

.detailTab_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.detailTab_headNode {
  width: 50%;
  font-size: 13px;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #adadad;
  color: #adadad;
  cursor: pointer; }
  .detailTab_headNode.is-current {
    color: #2C2C2C;
    border-color: #2C2C2C;
    cursor: default; }

.detailTab_body {
  position: relative;
  margin-top: 30px; }

.detailTab_bodyNode {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  letter-spacing: .08em;
  line-height: 1.8;
  font-size: 13px; }
  .detailTab_bodyNode.is-current {
    position: relative;
    opacity: 1;
    visibility: visible; }

.fs-c-variationAndActions {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationAndActions {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding: 62px 20px; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-variationAndActions {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .fs-c-variationAndActions.is-variationModalOpen {
    opacity: 1;
    visibility: visible;
    pointer-events: initial; }

.fs-c-variationAndActions__variation {
  position: relative;
  width: 100%;
  background-color: #fff; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationAndActions__variation {
      max-width: 500px;
      padding: 40px 15px; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-variationAndActions__variation {
      max-width: 672px;
      padding: 80px 32px; } }
  .fs-c-variationAndActions__variation::before {
    display: block;
    margin-bottom: 24px;
    content: "カラー/サイズを選択して注文";
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.2em; }
    @media print, screen and (max-width: 1024px) {
      .fs-c-variationAndActions__variation::before {
        font-size: 13px; } }

.fs-c-variationList__item__body {
  overflow: auto;
  border-bottom: 1px solid #EBEBEB;
  overscroll-behavior-y: none;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .fs-c-variationList__item__body::-webkit-scrollbar {
    display: none; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationList__item__body {
      max-height: 376px; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-variationList__item__body {
      max-height: 340px;
      padding: 0 48px; } }

.fs-c-variationList__item__cart li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationList__item__cart li {
      padding: 10px 0 24px; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-variationList__item__cart li {
      padding: 16px 0; } }
  .fs-c-variationList__item__cart li + li {
    border-top: 1px solid #EBEBEB;
    margin-top: 0 !important; }

.fs-c-variationCart__image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationCart__image {
      min-width: 80px;
      width: 25%;
      margin-right: 24px; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-variationCart__image {
      width: 104px; } }
  .fs-c-variationCart__image img {
    max-width: none !important; }

.fs-c-variationCart__variationName {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  text-align: center; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationCart__variationName {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 25%;
      min-width: 80px; } }

.fs-c-variationCart__variationName__name {
  font-size: 10px; }
  .is-soldout .fs-c-variationCart__variationName__name {
    color: #adadad;
    text-decoration: line-through; }

.fs-c-variationCart__cartButton {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationCart__cartButton {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1; } }
  @media print, screen and (max-width: 1024px) {
    .fs-c-variationCart__cartButton .fs-c-button--addToCart--variation,
    .fs-c-variationCart__cartButton .fs-c-button--subscribeToArrivalNotice--variation {
      margin-left: auto; } }

.fs-c-outOfStockButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  background-color: #005d2a;
  border: 1px solid #005d2a;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  width: 250px;
  margin: auto;
  font-size: 14px;
  pointer-events: none;
  background-color: #6a6a6a;
  border: 1px solid #6a6a6a; }
  @media print, screen and (max-width: 767px) {
    .fs-c-outOfStockButton {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-outOfStockButton:hover {
      background-color: #ffffff;
      color: #005d2a; } }
  .fs-c-outOfStockButton.is-active {
    background-color: #005d2a;
    border: 1px solid #005d2a;
    pointer-events: auto; }
  .fs-c-outOfStockButton.is-active:hover {
    background-color: #ffffff; }
  .fs-c-outOfStockButton .fs-c-string--label {
    font-size: 0; }
  .fs-c-outOfStockButton::after {
    content: 'SOLD OUT'; }

.fs-c-button--addToCart--variation.fs-c-button--primary,
.fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary,
.fs-c-outOfStockButton {
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  @media print, screen and (max-width: 1024px) {
    .fs-c-button--addToCart--variation.fs-c-button--primary,
    .fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary,
    .fs-c-outOfStockButton {
      width: 150px;
      height: 40px;
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-button--addToCart--variation.fs-c-button--primary,
    .fs-c-button--subscribeToArrivalNotice--variation.fs-c-button--secondary,
    .fs-c-outOfStockButton {
      width: 200px;
      margin: 0; } }

.fs-c-variationCart__wishlist {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  margin-left: 8px; }

.fs-c-button--addToWishList--icon,
.fs-c-button--removeFromWishList--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  border-color: #adadad;
  background-color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0; }
  @media print, screen and (max-width: 767px) {
    .fs-c-button--addToWishList--icon,
    .fs-c-button--removeFromWishList--icon {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .fs-c-button--addToWishList--icon:hover,
    .fs-c-button--removeFromWishList--icon:hover {
      background-color: #2c2c2c;
      border-color: #2c2c2c;
      color: #ffffff; } }
  @media print, screen and (max-width: 1024px) {
    .fs-c-button--addToWishList--icon,
    .fs-c-button--removeFromWishList--icon {
      width: 40px;
      height: 40px; } }
  @media print, screen and (min-width: 1025px) {
    .fs-c-button--addToWishList--icon,
    .fs-c-button--removeFromWishList--icon {
      width: 50px; } }
  .fs-c-button--addToWishList--icon:hover,
  .fs-c-button--removeFromWishList--icon:hover {
    background-color: #ffffff;
    border-color: #adadad;
    color: #2c2c2c; }
  .fs-c-button--addToWishList--icon::after,
  .fs-c-button--removeFromWishList--icon::after {
    content: "";
    width: 16px;
    height: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }

.fs-c-button--addToWishList--icon:after {
  background-image: url(../svg/heart-b.svg); }

.fs-c-button--removeFromWishList--icon:after {
  background-image: url(../svg/heart-g.svg); }

.fs-c-variationCart__variationName__stock {
  display: none; }

.fs-c-variationList__item__title {
  display: none; }

.variationModal_closeButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .2em;
  border-radius: 4px;
  border: 1px solid;
  -webkit-transition: border .3s ease, background-color .3s ease, color .3s ease;
  -o-transition: border .3s ease, background-color .3s ease, color .3s ease;
  transition: border .3s ease, background-color .3s ease, color .3s ease;
  width: 250px;
  height: 50px;
  margin: auto;
  border-color: #adadad;
  background-color: #ffffff;
  max-width: 395px;
  width: 100%;
  margin: 40px auto 0;
  cursor: pointer; }
  @media print, screen and (max-width: 767px) {
    .variationModal_closeButton {
      max-width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .variationModal_closeButton:hover {
      background-color: #2c2c2c;
      border-color: #2c2c2c;
      color: #ffffff; } }

.variationModal_closeIcon {
  position: absolute;
  cursor: pointer; }
  @media print, screen and (max-width: 1024px) {
    .variationModal_closeIcon {
      top: -50px;
      right: 0;
      width: 30px;
      height: 30px; } }
  @media print, screen and (min-width: 1025px) {
    .variationModal_closeIcon {
      top: -10px;
      right: -80px;
      width: 50px;
      height: 50px; } }
  .variationModal_closeIcon::before, .variationModal_closeIcon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    background-color: #fff; }
    @media print, screen and (max-width: 1024px) {
      .variationModal_closeIcon::before, .variationModal_closeIcon::after {
        width: 19px; } }
    @media print, screen and (min-width: 1025px) {
      .variationModal_closeIcon::before, .variationModal_closeIcon::after {
        width: 40px; } }
  .variationModal_closeIcon::before {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg); }
  .variationModal_closeIcon::after {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg); }

.detailCart_button {
  cursor: pointer; }
  @media print, screen and (max-width: 1024px) {
    .detailCart_button {
      margin-top: 32px; } }
  @media print, screen and (min-width: 768px) {
    .detailCart_button {
      margin-top: 40px; } }
