@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* 決まりごと
---------------------------------------------------------- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* ラインナップ
---------------------------------------------------------- */
/* ラインナップ_コンテナ */
.index_lineup_box {
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
}
/* ラインナップ_商品 */
.index_new_box {
  width: 100%;
  height: auto;
  border: solid 1px #111;
  margin: 0 auto 1rem;
}
.index_new_img {
  line-height: 0;
}
.index_new_img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
/* 購入ボタン
---------------------------------------------------------- */
/* ボタン_base */
.buy_btn_box {
  width: 100%;
  height: auto;
}
/* ボタン_base */
.buy_btn_base {
  position: relative;
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.3rem;
  cursor: pointer;
  user-select: none;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow:
    0 0 10px rgba(135, 135, 135, 1), 0 0 15px rgba(135, 135, 135, 1);
}
a.buy_btn_txt {
  overflow: hidden;
  padding: 0.7rem 1rem;
  color: #fff;
  border-radius: 1rem;
  background: #333;
}
a.buy_btn_txt span {
  position: relative;
  z-index: 1;
}
a.buy_btn_txt:before {
  position: absolute;
  top: 0;
  left: calc(-160% + 50px);
  width: 200%;
  height: 500%;
  content: '';
  transition: all .3s ease-in-out;
  transform: rotate(135deg) translateX(0) translateY(0);
  background: #000;
}
a.buy_btn_txt:after {
  position: absolute;
  top: -400%;
  right: calc(-160% + 50px);
  width: 200%;
  height: 500%;
  content: '';
  transition: all .3s ease-in-out;
  transform: rotate(135deg) translateX(0) translateY(0);
  background: #000;
}
a.buy_btn_txt:hover:before {
  transform: rotate(135deg) translateX(0) translateY(50%);
}
a.buy_btn_txt:hover:after {
  transform: rotate(135deg) translateX(0) translateY(-50%);
}
a.buy_btn_txt span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
a.buy_btn_txt span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  transform: translateY(0.1em);
  flex-shrink: 0;
  background: url("../img/icon_cart_01.svg") no-repeat center / contain;
}