@charset "UTF-8";
/* 決まりごと
---------------------------------------------------------- */
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
/* html_決まりごと
---------------------------------------------------------- */
.Tomica-wrapper {
  width: 100%;
}
.customworks_contents {
  width: 100%;
}
/* 購入ボタン
---------------------------------------------------------- */
/* ボタン_base */
.buy_btn_box {
  width: 100%;
  height: auto;
}
/* ボタン_base */
.buy_btn_base {
  font-size: 0.8rem;
}
a.buy_btn_txt {
  border-radius: 0.5rem;
}
 a.buy_btn_txt {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 0.5rem;
  }

  a.buy_btn_txt span {
    position: relative;
    z-index: 2;
  }

  a.buy_btn_txt::before,
  a.buy_btn_txt::after {
    top: 0;
    width: 28%;
    height: 100%;
    z-index: 0;
    transform: none;
    background: #000;
  }

  a.buy_btn_txt::before {
    left: 0;
    clip-path: polygon(
      0 0,
      100% 0,
      40% 100%,
      0 100%
    );
  }

  a.buy_btn_txt::after {
    right: 0;
    clip-path: polygon(
      60% 0,
      100% 0,
      100% 100%,
      0 100%
    );
  }

  a.buy_btn_txt:hover::before,
  a.buy_btn_txt:hover::after {
    transform: none;
  }