@-webkit-keyframes megaNavMotionKey {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes megaNavMotionKey {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes scrollNavMotionKey {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scrollNavMotionKey {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes scrollNavUpMotionKey {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes scrollNavUpMotionKey {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.allItemPageContent {
  padding-top: 60px;
  padding-bottom: 60px;
}

.allItemPageTitle {
  margin-bottom: 45px;
}

.allItemTab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  border-bottom: solid 6px #447137;
}

.allItemTab .allItemTabItem {
  width: calc(100% /3 - 10px);
  height: 80px;
  line-height: 84px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.allItemTab .allItemTabItem span {
  display: block;
  font-size: 2.8rem;
  color: #451700;
  text-align: center;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.allItemTab .allItemTabItem.Act {
  background: #447137;
}

.allItemTab .allItemTabItem.Act span {
  color: #ffffff;
}

.allItemTab .allItemTabItem:hover {
  background: #447137;
}

.allItemTab .allItemTabItem:hover span {
  color: #ffffff;
}

.allItemContent {
  display: none;
  padding: 40px 0;
}

.allItemContent.Act {
  display: block;
}

.allItemAnchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 0;
  width: 89%;
  padding: 24px 28px;
  margin: 0 auto 40px;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-sizing: content-box;
}

.allItemAnchor .allItemAnchorItem {
  width: 25%;
}

.allItemAnchor .allItemAnchorItem:hover a span {
  text-decoration: none;
}

.allItemAnchor .allItemAnchorItem a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #451700;
}

.allItemAnchor .allItemAnchorItem a span {
  text-decoration: underline;
}

.allItemAnchor .allItemAnchorItem a::after {
  position: absolute;
  top: calc(50% - 6px);
  right: -16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 7px;
  height: 7px;
  content: '';
  border-top: solid 2px #451700;
  border-right: solid 2px #451700;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.allItemSeriesBox {
  padding: 16px 27px 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-top: solid 10px #451700;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.allItemSeriesBox:last-child {
  margin-bottom: 0;
}

.allItemSeriesBox .allItemSeriesBoxTitle {
  display: blockm;
  margin-bottom: 26px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #451700;
}

.allItemSeriesBox .allItemSeriesBoxTitle::after {
  display: block;
  width: 100%;
  height: 1px;
  padding-top: 2px;
  content: '';
  border-bottom: solid 1px #e0e0e0;
}

.allItemSeriesBox .allItemCardBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 33px;
}

.allItemSeriesBox .allItemCard {
  position: relative;
  width: calc(20% - 33px);
  padding-bottom: 120px;
}

.allItemSeriesBox .allItemCard .allItemCardImage {
  margin-bottom: 6px;
}

.allItemSeriesBox .allItemCard .allItemCardInfo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.allItemSeriesBox .allItemCard .allItemCardName {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #451700;
  text-align: center;
}

.allItemSeriesBox .allItemCard .allItemCardPrice {
  margin-top: 2px;
  font-size: 1.4rem;
  text-align: center;
}

.allItemSeriesBox .allItemCard .allItemCardPrice span {
  margin-left: 5px;
  font-size: 1.8rem;
  color: #451700;
}

.allItemSeriesBox .allItemCard .m_button-primary {
  margin-top: 6px;
  cursor: pointer;
}

.allItemSeriesBox .allItemCard .m_button-primary:last-child {
  margin-top: 10px;
}

.allItemSeriesBox .allItemCard .m_button-primary a span {
  margin-left: -0.7rem;
  font-size: 1.4rem;
}

.allItemBack {
  width: 150px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 36px;
  color: #451700;
  text-align: center;
  cursor: pointer;
  background-color: whitesmoke;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.allItemBack:hover {
  color: whitesmoke;
  background-color: #451700;
}

.allItemModalWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.allItemModalWrap.Act {
  pointer-events: auto;
  opacity: 1;
}

.allItemModalWrap.Hide {
  pointer-events: none;
  opacity: 0;
}

.allItemModalWrap .allItemModalBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.302;
}

.allItemModalWrap .allItemModalContentWrapOuter {
  position: relative;
}

.allItemModalWrap .allItemModalContentWrap {
  position: relative;
  max-height: 75vh;
  overflow-y: scroll;
}

.allItemModalWrap .allItemModalClose {
  position: relative;
  width: 48px;
  height: 48px;
  margin-top: -48px;
  margin-bottom: 8px;
  margin-left: auto;
  cursor: pointer;
  background: #451700;
  border: solid 1px #451700;
  border-radius: 50%;
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.allItemModalWrap .allItemModalClose:hover {
  background: #ffffff;
}

.allItemModalWrap .allItemModalClose:hover span {
  background: #451700;
}

.allItemModalWrap .allItemModalClose span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  margin-left: -14px;
  background: #ffffff;
}

.allItemModalWrap .allItemModalClose span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.allItemModalWrap .allItemModalClose span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.allItemModalWrap .allItemModalContent {
  position: relative;
  z-index: 2;
  width: 710px;
  padding: 16px 27px 30px;
  background-color: #ffffff;
  border-top: solid 10px #451700;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-sizing: content-box;
}

.allItemModalWrap .allItemModalContent .allItemModalTitle {
  display: blockm;
  margin-bottom: 26px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #451700;
}

.allItemModalWrap .allItemModalContent .allItemModalTitle::after {
  display: block;
  width: 100%;
  height: 1px;
  padding-top: 2px;
  content: '';
  border-bottom: solid 1px #e0e0e0;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne {
  margin-top: 30px;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__head {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  padding: 12px;
  background: url("/assets/static/common/img/bg_content.jpg") center left;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__tags {
  margin-left: auto;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__price dt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #451700;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__price dd {
  font-size: 1.6rem;
  font-weight: bold;
  color: #451700;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__price dd span:nth-child(1) {
  padding: 0 10px;
  font-size: 2.4rem;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__price dd span:nth-child(2) {
  font-size: 1.4rem;
}

.allItemModalWrap .allItemModalContent .allItemModalOnlyOne__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.allItemModalWrap .allItemModalContent .allItemModalNote {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #451700;
}

.allItemModalWrap .allItemModalContent .m_cartButton-secondary, .allItemModalWrap .allItemModalContent .m_cartButton-tertiary {
  width: 450px;
  margin: 0 auto;
}

.allItemModalWrap .allItemModalContent .m_cartButton-secondary {
  margin-bottom: 30px;
}

.allItemModalWrap .m_itemTypeTag.MarginLeft {
  margin-left: 10px;
}

.allItemModalNews {
  margin-top: 15px;
  font-size: 1.4rem;
}

.allItemModalNews.Red {
  color: #c40000;
}

.allItemModalValueForm {
  margin-top: 20px;
  margin-bottom: 15px;
}

.allItemModalValueForm:first-of-type {
  margin-top: 30px;
}

.allItemModalValueForm__title {
  height: 30px;
  padding-left: 53px;
  margin-bottom: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 30px;
  color: #c40000;
  background: url("/assets/static/common/img/icon_box_red.png") no-repeat center left;
  background-size: 40px auto;
}

.allItemModalValueForm__title.Dark {
  color: #451700;
  background: url("/assets/static/common/img/icon_box_dark.png") no-repeat center left;
  background-size: 40px auto;
}

.allItemModalValueForm__itemHead {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 47px;
  padding: 12px;
  background: url("/assets/static/common/img/bg_content.jpg") center left;
}

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

.allItemModalValueForm__itemBody {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 10px;
}

.allItemModalValueForm__itemBody .m_detailRegularItemOnlyOne__price {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.allItemModalValueForm__itemBody .m_detailRegularItemOnlyOne__price .u_smallPriceText span {
  font-size: 2.6rem;
}

.allItemModalValueForm__itemBodyInner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-left: 30px;
  box-sizing: content-box;
}

.allItemModalValueForm__itemBodyInner .m_itemTypeTag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  text-align: center;
}

.allItemModalValueForm__itemBodyRadio {
  width: 88px;
  font-size: 1.2rem;
  color: #451700;
  text-align: center;
}

.allItemModalValueForm__itemBodyRadio span {
  font-size: 1.2rem;
  color: #451700;
}

.allItemModalValueForm__fakeRadio {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  margin: 5px auto 0;
  cursor: pointer;
  background: #efe6d2;
  border: solid 2px #dcc8a3;
  border-radius: 50%;
}

.allItemModalValueForm__fakeRadio.Act::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  content: '';
  background: #ee7300;
  border-radius: 50%;
}

.allItemModalValueForm__itemBodyAllPrice {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.allItemModalValueForm__itemBodyPrice {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: calc(16px * 3);
  font-size: 1.6rem;
  color: #451700;
}

.allItemModalValueForm__itemBodyPrice::after {
  position: absolute;
  top: calc(50% - 4px);
  right: calc(16px * -2);
  width: 0;
  height: 0;
  margin-top: -8px;
  content: '';
  border-color: transparent transparent transparent #451700;
  border-style: solid;
  border-width: 12px 0 12px 16px;
}

.allItemModalValueForm__itemBodyPrice span:nth-child(1) {
  padding-right: 0.2rem;
  font-weight: bold;
}

.allItemModalValueForm__itemBodyPrice span:nth-child(2) {
  position: relative;
  font-size: 1.6rem;
}

.allItemModalValueForm__itemBodyPrice span:nth-child(2)::after {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #451700;
}

.allItemModalValueForm__itemBodyPrice span:nth-child(3) {
  font-size: 1.6rem;
}

.allItemModalValueForm__itemBodyDiscount {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.allItemModalValueForm__itemBodyValue {
  position: relative;
  font-size: 1.5rem;
  color: #451700;
}

.allItemModalValueForm__itemBodyValue span {
  padding-right: 2px;
  font-size: 2.6rem;
  font-weight: bold;
  color: #c40000;
}

.allItemModalValueForm__itemBodyBottomText {
  font-weight: 700;
  font-size: 1.6rem;
}

.allItemModalValueForm__afterFirstPurchase {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
}

.m_itemTypeTag.Edge {
  height: 30px;
  line-height: 30px;
  letter-spacing: 0;
  border-radius: 0;
}

.m_itemTypeTag.Transparent {
  background: transparent;
}

.m_itemTypeTag.NoFrame {
  border: none;
}

.m_button-primary.GreenB {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #447137;
  border: solid 1px #447137;
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.m_button-primary.GreenB a {
  color: #ffffff;
}

.m_button-primary.GreenB a::before {
  position: absolute;
  top: calc(50% - 10px);
  right: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 20px;
  height: 20px;
  content: '';
  background: #ffffff;
  border-radius: 50%;
}

.m_button-primary.GreenB a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 21px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 8px;
  height: 8px;
  content: '';
  border-top: solid 3px #447137;
  border-right: solid 3px #447137;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_button-primary.GreenB:hover {
  background: #ffffff;
  border: solid 1px #447137;
}

.m_button-primary.GreenB:hover a {
  color: #447137;
}

.m_button-primary.GreenB:hover a::before {
  background: #447137;
}

.m_button-primary.GreenB:hover a::after {
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
}

.m_button-primary.Gray {
  background: #9fa0a0;
  border: #d2d2d2;
}

.m_button-primary.Gray a {
  color: #ffffff;
  cursor: default;
}

.m_button-primary.Gray a::after {
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
}

.m_cartButton-secondary {
  height: 61px;
  line-height: 61px;
}

.m_cartButton-secondary.Orange {
  background: #ee7300;
}

.m_cartButton-secondary.Orange:hover {
  background: #ee7300;
  opacity: 0.8;
}

.m_pageTitle-tertiary {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  color: #451700;
  text-align: center;
}
