@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* 決まりごと
---------------------------------------------------------- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
body {
  overflow-x: hidden;
  margin: 0;
}
/* ボタンデザイン
---------------------------------------------------------- */
.btn_lineup_area {
  position: relative;
  z-index: 1;
  width: 900px;
  margin: 0 auto 5em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-items: center;
  align-items: center;
  justify-content: center;
}
/* ボタン_四角赤 */
.btn_square_red_wicon {
  display: inline-block;
  width: 70%;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 0.75em 1.5em;
  cursor: pointer;
  border: 2px solid #9b0404;
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}
.btn_square_red_wicon:hover {
  background-color: #9b0404;
  color: #fff;
}
/* 商品グリッド
---------------------------------------------------------- */
/* テキスト_コンテナ_黒 */
.box_xross_container {
  width: 100%;
  background-color: #000;
  box-sizing: border-box;
  padding: 0 0 0.5em;
}
/* テキスト_コンテナ_赤 */
.box_xross_container_red {
  width: 100%;
  background-color: #ff0000;
  box-sizing: border-box;
  padding: 0 0 0.5em;
}
/* 各アイテム_テキスト */
.box_xross_item_title {
  display: flex;
  width: 100%;
  min-height: 3.4em;
  padding: 5px 0 5px 10px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
	text-align: left;
}
.box_xross_item_datebox {
  display: flex;
  width: 40%;
  margin: 0 0 3px 10px;
  padding: 2px 5px;
  box-sizing: border-box;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: #000;
}
.box_xross_item_price {
  display: flex;
  width: 60%;
  margin: 0 0 3px 10px;
  padding: 2px 5px;
  box-sizing: border-box;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: #000;
}
.box_xross_item_txt {
  display: flex;
  width: 100%;
  padding: 0 0 5px 10px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
}
.box_xross_item_border {
  width: 93%;
  margin: 5px auto 0;
  border-bottom: solid 2px #fff;
}
/* 購入ボタン
---------------------------------------------------------- */
.btn_xross_buy {
  width: 70%;
  margin: 0.7em 15%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding: 0.5em 0.1em;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #000;
  border: 3px solid #fff83b;
  background: #dcab03;
}
.btn_xross_buy:before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #fff83b;
}
.btn_xross_buy:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}