@charset "UTF-8";
/*
 * padding for controls
 */
/*
 * This class is added to body when a modal dialog is displayed.
 */
.wqe-x-suspended,
.wqe-x-suspended body {
  overflow: hidden;
}
.wqe-Form .wqe-Product > .wqe--info, .wqe-Form .wqe-Product, .wqe-Form .wqe-Image {
  color: 	ivory!important;/*nishida OK  メニュー名*/
  display: block;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  box-sizing: border-box;
  font-size: 16px;
}

.wqe-Form .wqe-Group > .wqe--body, .wqe-Form .wqe-Product > .wqe--info > .wqe--main, .wqe-Form .wqe-Product > .wqe--info > .wqe--media, .wqe-Form .wqe-Product, .wqe-Form .wqe-Group > .wqe--head > .wqe--media {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: stretch;
}

.wqe-Form .wqe-Group {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 17, 17, 0.26);
}
.wqe-Form .wqe-Group > .wqe--head {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.26);
  background-color: #f0f0f0;
  position: relative;
  font-size: 16px;
  color: #111111;
}
.wqe-Form .wqe-Group > .wqe--head > .wqe--media {
  width: 30px;
  height: 30px;
}
.wqe-Form .wqe-Group > .wqe--head > .wqe--main {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: auto;
  width: 100%;
}
.wqe-Form .wqe-Group > .wqe--head > .wqe--main > .wqe--note {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.3;
}
.wqe-Form .wqe-Group > .wqe--head > .wqe--message {
/*  color:ivory!important;  ここにいれると確認画面の注文表の中の文字色（商品名や金額）がかわる　nishida*/
  top: 10px;
  right: 10px;
  position: absolute;
  background: transparent;
}
.wqe-Form .wqe-is-invalid.wqe-Group {
  border-color: #dd4422;
}
.wqe-Form .wqe-belongs-wnavigator.wqe-Group {
  height: 100%;
  overflow: auto;
  position: relative;
  width: 100%;
}
.wqe-Form .wqe-belongs-wnavigator.wqe-Group > .wqe--head {
  flex: 0 0 auto;
}

.wqe-Form .wqe-TextArea, .wqe-Form .wqe-TextInput {
  display: block;
  border: 1px solid rgba(17, 17, 17, 0.26);
  background: white;
  color: #111111;
  padding: 7px 7px;
  height: auto;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  border-radius: 0;
  line-height: 1.5;
  max-width: 100%;
  position: relative;
  font-size: 16px;
  transition: box-shadow 0.1s linear, border-color 0.1s linear;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-TextArea:hover, .wqe-Form .wqe-TextInput:hover {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.2);
    z-index: 2;
  }
}
.wqe-Form .wqe-TextArea:focus, .wqe-Form .wqe-TextInput:focus {
  box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.4);
  border: 1px solid rgba(17, 17, 17, 0.26);
  outline: none;
  z-index: 2;
  animation: explosion 0.6s;
}
.wqe-Form .wqe-is-invalid.wqe-TextArea:not(:focus), .wqe-Form .wqe-is-invalid.wqe-TextInput:not(:focus) {
  border-color: #dd4422;
}
.wqe-Form .wqe-TextArea::placeholder, .wqe-Form .wqe-TextInput::placeholder {
  font-size: 16px;
  color: rgba(17, 17, 17, 0.35);
}
.wqe-Form .wqe-TextArea:-ms-input-placeholder, .wqe-Form .wqe-TextInput:-ms-input-placeholder {
  font-size: 16px;
  color: rgba(17, 17, 17, 0.35);
}
.wqe-Form .wqe-TextArea::-ms-input-placeholder, .wqe-Form .wqe-TextInput::-ms-input-placeholder {
  font-size: 16px;
  color: rgba(17, 17, 17, 0.35);
}

@keyframes explosion {
  0% {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.2), 0 0 0 0 rgba(235, 65, 102, 0.2);
  }
  15% {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.3), 0 0 6px 10px rgba(235, 65, 102, 0.2);
  }
  30% {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.4), 0 0 8px 17px rgba(235, 65, 102, 0.1);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.4), 0 0 12px 25px rgba(235, 65, 102, 0);
  }
}
.wqe-Form .wqe-Radio, .wqe-Form .wqe-Checkbox {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  line-height: 1.5;
  max-width: 100%;
  color: #111111;
}
.wqe-Form .wqe-Radio > input, .wqe-Form .wqe-Checkbox > input {
  display: block;
  position: absolute;
  opacity: 0;
}
.wqe-Form .wqe-Radio > label, .wqe-Form .wqe-Checkbox > label {
  display: block;
  background: white;
  height: 40px;
  line-height: 40px;
  padding: 0 15px 0 7px;
  border: 1px solid rgba(17, 17, 17, 0.26);
  border-radius: 100px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  transition: box-shadow 0.1s linear, border-color 0.1s linear;
}
.wqe-Form .wqe-Radio > input.wqe-is-invalid + label, .wqe-Form .wqe-Checkbox > input.wqe-is-invalid + label {
  border-color: #dd4422;
  z-index: 2;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-Radio > label:hover, .wqe-Form .wqe-Checkbox > label:hover {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.2);
  }
}
.wqe-Form .wqe-Radio > input:focus + label, .wqe-Form .wqe-Checkbox > input:focus + label {
  box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.4);
  z-index: 2;
}

.wqe-Form .wqe-Control > .wqe--body > .wqe--message, .wqe-Form .wqe-Group > .wqe--head > .wqe--message {
  display: block;
  color: #dd4422;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  width: auto;
  margin-top: 0 !important;
  max-width: 100%;
}
.wqe-Form .wqe-Control > .wqe--body > .wqe--message::before, .wqe-Form .wqe-Group > .wqe--head > .wqe--message::before {
  display: inline-block;
  font-family: "dashicons";
  content: "";
  vertical-align: -2px;
  margin-right: 1px;
}
.wqe-Form .wqe-Control > .wqe--body > .wqe-is-run.wqe-for-removed.wqe--message, .wqe-Form .wqe-Group > .wqe--head > .wqe-is-run.wqe-for-removed.wqe--message {
  transition: opacity 0.2s linear;
}
.wqe-Form .wqe-Control > .wqe--body > .wqe-is-removed.wqe--message, .wqe-Form .wqe-Group > .wqe--head > .wqe-is-removed.wqe--message {
  opacity: 0;
}
.wqe-Form .wqe-Control > .wqe--body > .wqe-is-run.wqe-for-created.wqe--message, .wqe-Form .wqe-Group > .wqe--head > .wqe-is-run.wqe-for-created.wqe--message {
  animation-iteration-count: 1;
  animation: rejection 0.3s;
}

@keyframes rejection {
  0% {
    transform: translateX(0.25em);
  }
  15% {
    transform: translateX(-0.25em);
  }
  30% {
    transform: translateX(0.125em);
  }
  50% {
    transform: translateX(-0.125em);
  }
  70% {
    transform: translateX(0.0625em);
  }
  90% {
    transform: translateX(-0.0625em);
  }
}
.wqe-Form .wqe-Button {
  display: block;
  border: 1px solid rgba(17, 17, 17, 0.13);
  background-color: #cec5c7 !important;
  padding: 7px 15px;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  line-height: 1.5;
  max-width: 100%;
  background-clip: border-box;
  font-size: 16px;
  font-weight: normal;
  border-radius: 0;
  outline: none;
  color: inherit !important;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.1s linear, background-color 0.1s linear, opacity 0.1s linear;
}
.wqe-Form .wqe-Button:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.wqe-Form .wqe-Button:hover {
  text-decoration: none;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-Button:hover {
    background-color: #b2a5a8 !important;
  }
}
.wqe-Form .wqe-Button:focus {
  box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.4);
  background-color: #cec5c7 !important;
  text-decoration: none;
  outline: none;
  z-index: 2;
}
.wqe-Form .wqe-Button:active {
  background-color: #b2a5a8 !important;
  text-decoration: none;
}

.wqe-Form .wqe-Image {
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.wqe-Form .wqe-Image.wqe-scaling-center {
  background-image: none !important;
  position: relative;
}
.wqe-Form .wqe-Image.wqe-scaling-center > .wqe--img {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  min-width: 1px;
  min-height: 1px;
  border: none;
}
.wqe-Form .wqe-Image.wqe-scaling-cover {
  background-size: cover;
}
.wqe-Form .wqe-Image.wqe-scaling-cover > .wqe--img {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.wqe-Form .wqe-Image.wqe-scaling-contain {
  background-size: contain;
}
.wqe-Form .wqe-Image.wqe-scaling-contain > .wqe--img {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.wqe-Form .wqe-Image.wqe-belongs-product {
  width: 292px;
  height: 250px;
  background-size: cover;
}
.wqe-Form .wqe-Image.wqe-belongs-product > .wqe--img {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.wqe-Form .wqe-Image.wqe-belongs-selector {
  width: 30px;
  height: 30px;
}

.wqe-Form .wqe-Product {
  position: relative;
  width: 300px;
  box-sizing: border-box;
  justify-content: center;
  align-self: stretch;
  flex-direction: column;
  padding: 4px;
  transition: background-color 0.2s linear;
}
.wqe-Form .wqe-Product > .wqe--info {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  flex-direction: column;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--media {
  justify-content: center;
  flex: 0 0 auto;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--main {
  flex-direction: row;
  text-align: center;
  flex: 1 1 auto;
  left: 0;
  right: 0;
  bottom: 0;
  flex-wrap: wrap;
  padding: 4px;
  justify-content: space-between;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--name {
  flex: 0 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  max-width: 100%;
  order: 1;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--note {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.3;
  max-width: 100%;
  width: 100%;
  order: 3;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--prices {
  max-width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  order: 2;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--prices > .wqe--normalPrice {
  text-decoration: line-through;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--main > .wqe--prices > .wqe--price {
  font-size: 16px;
  font-weight: bold;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--ribbon.wqe-ribbon-1 {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 11px;
  text-align: center;
  background: red;
  color: yellow;
  border-radius: 100px;
  top: 206px;
  right: 4px;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--ribbon.wqe-ribbon-2 {
  display: inline-block;
  position: absolute;
  left: -30px;
  top: 21px;
  width: 120px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  height: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #15155a;
  color: white;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--ribbon.wqe-ribbon-3 {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 11px;
  text-align: center;
  background: red;
  color: yellow;
  border-radius: 100px;
  top: 206px;
  right: 44px;
}
.wqe-Form .wqe-Product > .wqe--info > .wqe--ribbon.wqe-ribbon-disabled {
  position: absolute;
  display: block;
  border: 1px solid #dd4422;
  background-color: white;
  color: #dd4422;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wqe-Form .wqe-Product > .wqe--control > .wqe--quantity {
  display: none;
}
.wqe-Form .wqe-Product.wqe-is-selected {
  background-color: #e69aaa;
}
.wqe-Form .wqe-Product.wqe-is-disabled .wqe--media,
.wqe-Form .wqe-Product.wqe-is-disabled .wqe--main,
.wqe-Form .wqe-Product.wqe-is-disabled .wqe--ribbon:not(.wqe-ribbon-disabled) {
  opacity: 0.3;
}

.wqe-Form .wqe-Group {
  box-sizing: border-box;
  border: none;
}
.wqe-Form .wqe-Group > .wqe--head {
  display: none;
}
.wqe-Form .wqe-Group > .wqe--body {
  flex-direction: row;
  flex-wrap: wrap;
}
.wqe-Form .wqe-Group > .wqe--body > .wqe--note {
  font-size: 16px;
  color: #111111;
  flex: 1 1 100%;
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.wqe-Form .wqe-Group.wqe-is-run {
  transition: opacity 0.2s linear;
}
.wqe-Form .wqe-Group.wqe-is-run.wqe-for-removed {
  position: absolute;
}
.wqe-Form .wqe-Group.wqe-is-created {
  opacity: 0;
}
.wqe-Form .wqe-Group.wqe-is-removed {
  opacity: 0;
  position: absolute;
}

.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator {
  display: flex;
  background: #f0f0f0;
  border: 1px solid rgba(17, 17, 17, 0.26);
  width: 100%;
  z-index: 100;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator.wqe-sticks-top {
  position: absolute;
  top: 0;
  bottom: auto;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator.wqe-sticks-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator.wqe-sticks-screen {
  position: fixed;
  top: 0;
  bottom: auto;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: auto;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item > a {
  outline: none;
  text-decoration: none;
  color: #111111;
  font-size: 16px;
  display: flex;
  padding: 0 15px;
  justify-content: center;
  background-color: transparent;
  transition: background-color 0.2s linear;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item > a:hover {
    background-color: #b2a5a8;
  }
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item > a > .wqe--media {
  display: none;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item > a > .wqe--main {
  pointer-events: none;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item > a > .wqe--main > .wqe--name {
  height: 60px;
  line-height: 60px;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item > a > .wqe--main > .wqe--note {
  display: none;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: transparent;
  transition: background-color 0.2s linear;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu > .wqe--item.wqe-is-current::after {
  background-color: #eb4166;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--menuWrap > .wqe--menu::after {
  display: block;
  content: "";
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 45px;
  width: 45px;
  box-sizing: border-box;
  height: 1px;
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  background: linear-gradient(to left, #f0f0f0, rgba(240, 240, 240, 0.5) 75%, rgba(240, 240, 240, 0) 100%);
  pointer-events: none;
}
@media screen and (max-width: 782px) {
  .wqe-Form .wqe-NavBar.wqe-belongs-hnavigator::after {
    right: 68px;
  }
}
.wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--commands {
  display: none;
  padding: 0;
  width: 68px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
}
@media screen and (max-width: 782px) {
  .wqe-Form .wqe-NavBar.wqe-belongs-hnavigator > .wqe--commands {
    display: block;
  }
}

.wqe-Form .wqe-Monitor {
  font-size: 16px;
  color: #111111; /* 無関係　nishida*/
  display: flex;
  flex-direction: column;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) {
  width: 350px;
  z-index: 200;
  transform: translate(20px, 0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming).wqe-sticks-top {
  position: absolute;
  top: 0;
  bottom: auto;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming).wqe-sticks-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming).wqe-sticks-screen {
  position: fixed;
  top: 0;
  bottom: auto;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--header {
  display: flex;
  background-color: white;
  border: 1px solid rgba(17, 17, 17, 0.26);
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--header > .wqe--title {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  font-size: 16px;
  font-weight: bold;
  color: #111111;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--header > .wqe--menu {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--header > .wqe--menu > .wqe-for-hidemonitor {
  display: none;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries {
  border: 1px solid rgba(17, 17, 17, 0.26);
  overflow: auto;
  background: white;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry.wqe-for-header {
  display: none;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  /*width: 100%;*/
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry.wqe-for-header {
  border-bottom: 1px solid rgba(17, 17, 17, 0.26);
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry:nth-child(even) {
  background: #f0f0f0;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe--prop {
  padding: 10px;
  box-sizing: border-box;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-no {
  display: none;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-entry {
  flex: 1 1 40%;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-unitPrice {
  display: none;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-taxClass {
  display: none;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-quantity {
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 40px;
  width: 40px;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-price {
  display: none;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-operation {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  box-sizing: border-box;
  width: 104px;
  display: flex;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry > .wqe-for-operation > *:first-child {
  margin-right: 4px;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry.wqe-is-run {
  transition: max-height 0.2s linear, opacity 0.2s linear;
  max-height: 100px;
  overflow: hidden;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry.wqe-is-created, .wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--entries > .wqe--entry.wqe-is-removed {
  max-height: 0;
  opacity: 0;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer {
  background: white;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry {
  border: 1px solid rgba(17, 17, 17, 0.26);
  display: flex;
  align-items: center;
  font-weight: bold;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop {
  padding: 10px;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-name {
  flex: 1 1 5em;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value {
  text-align: right;
  flex: 1 1 7em;
  overflow: hidden;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span {
  display: inline-block;
  position: relative;
  height: 1.5em;
  max-height: 1.5em;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span {
  display: block;
  position: relative;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-run {
  transition: transform 0.2s ease-in-out;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-run.wqe-for-removed {
  top: 0;
  position: absolute;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-created {
  transform: translateY(-4em);
  opacity: 1;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-removed {
  top: 0;
  position: absolute;
  transform: translateY(4em);
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry.wqe-for-total > .wqe-for-value {
  font-size: 20px;
  color: #eb4166;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry.wqe-for-subtotal span {
  transition-delay: 0.2s !important;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry.wqe-for-tax span {
  transition-delay: 0.28s !important;
}
.wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--footer > .wqe--entry.wqe-for-total span {
  transition-delay: 0.36s !important;
}
@media screen and (max-width: 782px) {
  .wqe-Form .wqe-Monitor:not(.wqe-is-confirming) {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: auto !important;
    transition: transform 0.2s ease-in-out;
    transform: translate(0, 0);
  }
  .wqe-Form .wqe-Monitor:not(.wqe-is-confirming):not(.wqe-is-spshown) {
    transform: translate(370px, 0);
  }
  .wqe-Form .wqe-Monitor:not(.wqe-is-confirming) > .wqe--header > .wqe--menu > .wqe-for-hidemonitor {
    display: block;
  }
}
.wqe-Form .wqe-Monitor.wqe-is-confirming {
  width: 100%;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--header {
  display: none;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries {
  border: 1px solid rgba(17, 17, 17, 0.26);
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry {
  display: flex;
  align-items: center;
  background-color: white;
  flex-wrap: wrap;
  /*width: 100%;*/
  /*& > .wqe-for-category {
      font-size: $small-font-size;
      color: rgba($base-color, $weak-alpha);
      flex: 1 1 20%;
  }*/
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-for-header {
  border-bottom: 1px solid rgba(17, 17, 17, 0.26);
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry:nth-child(even) {
  background: #f0f0f0;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe--prop {
  padding: 10px;
  box-sizing: border-box;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-no {
  display: none;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-entry {
  flex: 0 1 48%;
  max-width: 48%;
  order: 1;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-unitPrice {
  text-align: right;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.6);
  flex: 0 1 12.5%;
  max-width: 12.5%;
  order: 2;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-quantity {
  text-align: right;
  flex: 0 1 10%;
  max-width: 10%;
  order: 3;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-price {
  text-align: right;
  flex: 0 1 15%;
  max-width: 15%;
  order: 5;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-taxClass {
  text-align: center;
  font-size: 10px;
  flex: 0 1 12%;
  max-width: 12%;
  order: 4;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-operation {
  display: none;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-for-header > .wqe-for-taxClass {
  font-size: inherit;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-is-run {
  transition: max-height 0.2s linear, opacity 0.2s linear;
  max-height: 100px;
  overflow: hidden;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-is-created, .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-is-removed {
  max-height: 0;
  opacity: 0;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer {
  align-self: flex-end;
  width: 17em;
  max-width: 100%;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry {
  border: 1px solid rgba(17, 17, 17, 0.26);
  display: flex;
  align-items: center;
  font-weight: bold;
  background-color: white;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop {
  padding: 10px;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-name {
  flex: 1 1 6em;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value {
  text-align: right;
  flex: 1 1 6em;
  overflow: hidden;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span {
  display: inline-block;
  position: relative;
  height: 1.5em;
  max-height: 1.5em;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span {
  display: block;
  position: relative;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-run {
  transition: transform 0.2s ease-in-out;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-run.wqe-for-removed {
  top: 0;
  position: absolute;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-created {
  transform: translateY(-4em);
  opacity: 1;
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry > .wqe--prop.wqe-for-value span span.wqe-is-removed {
  top: 0;
  position: absolute;
  transform: translateY(4em);
}
.wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--footer > .wqe--entry.wqe-for-total > .wqe-for-value {
  font-size: 20px;
  color: #eb4166;
}
@media screen and (max-width: 782px) {
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry {
    flex-wrap: wrap;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-for-header {
    font-size: 14px;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-for-header > .wqe-for-unitPrice, .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-for-header > .wqe-for-quantity, .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry.wqe-for-header > .wqe-for-taxClass {
    display: none;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-entry {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 70%;
    max-width: 70%;
    order: 1;
    padding-bottom: 0;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-price {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
    max-width: 30%;
    order: 2;
    padding-bottom: 0;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-unitPrice {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 10px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
    max-width: 30%;
    text-align: left;
    order: 103;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-quantity {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 10px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 15%;
    max-width: 15%;
    text-align: left;
    order: 104;
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-quantity::before {
    display: inline;
    content: "x ";
  }
  .wqe-Form .wqe-Monitor.wqe-is-confirming > .wqe--entries > .wqe--entry > .wqe-for-taxClass {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 10px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 55%;
    max-width: 55%;
    text-align: left;
    order: 105;
  }
}

.wqe-Form .wqe-Control {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: ivory;/*#111111;/*　確認画面のお名前等の入力文字色　nishida*/
}
.wqe-Form .wqe-Control > .wqe--header {
  color: 	lightgrey;/*nishida OK*/
  flex: 0 0 auto;
  width: 10em;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 9px 0;
  box-sizing: border-box;
}
.wqe-Form .wqe-Control > .wqe--header > .wqe--label {
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
}
.wqe-Form .wqe-Control > .wqe--header > .wqe--required {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #eb4166;
}
.wqe-Form .wqe-Control > .wqe--header > .wqe--required.wqe-is-optional {
  display: none;
}
.wqe-Form .wqe-Control > .wqe--header.wqe-content-empty > .wqe--required {
  display: none;
}
.wqe-Form .wqe-Control > .wqe--header > *:not(:last-child) {
  margin-right: 4px;
}
.wqe-Form .wqe-Control > .wqe--body {
  flex: 1 1 auto;
  position: relative;
}
.wqe-Form .wqe-Control > .wqe--body > *:not(:first-child) {
  margin-top: 4px;
}
.wqe-Form .wqe-Control > .wqe--body .wqe--note {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  margin-top: 4px;
  margin-left: 4px;
}
.wqe-Form .wqe-Control > .wqe--body > .wqe--message {
  left: 16px;
  top: -18px;
  position: absolute;
}
.wqe-Form .wqe-Control.wqe-is-run.wqe-for-removed {
  display: none;
}

@media screen and (max-width: 782px) {
  .wqe-Form .wqe-Control {
    flex-direction: column;
  }
  .wqe-Form .wqe-Control > .wqe--header {
    width: 100%;
    padding: 0;
    margin-bottom: 4px;
  }
  .wqe-Form .wqe-Control > .wqe--header.wqe-content-empty {
    display: none;
  }
  .wqe-Form .wqe-Control > .wqe--body {
    width: 100%;
  }
  .wqe-Form .wqe-Control > .wqe--body .wqe--message {
    left: auto;
    right: 4px;
  }
}
.wqe-Form .wqe-TextInput.wqe-size-full {
  width: 100%;
}
.wqe-Form .wqe-TextInput.wqe-size-nano {
  width: calc(3em + 16px);
}
.wqe-Form .wqe-TextInput.wqe-size-mini {
  width: calc(5em + 16px);
}
.wqe-Form .wqe-TextInput.wqe-size-small {
  width: calc(8em + 16px);
}
.wqe-Form .wqe-TextInput.wqe-size-normal {
  width: calc(13em + 16px);
}

.wqe-Form .wqe-TextArea {
  height: 160px;
  width: 100%;
}
.wqe-Form .wqe-TextArea.wqe-size-full {
  height: 256px;
}
.wqe-Form .wqe-TextArea.wqe-size-normal {
  height: 160px;
}
.wqe-Form .wqe-TextArea.wqe-size-small {
  height: 112px;
}
.wqe-Form .wqe-TextArea.wqe-size-mini {
  height: 88px;
}
.wqe-Form .wqe-TextArea.wqe-size-nano {
  height: 64px;
}

.wqe-Form .wqe-InputGroup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.wqe-Form .wqe-InputGroup.wqe-gutter-small > *:not(:last-child) {
  margin-right: 8px;
}
.wqe-Form .wqe-InputGroup.wqe-gutter-mini > *:not(:last-child) {
  margin-right: 4px;
}

.wqe-Form .wqe-Checkbox > label::before {
  content: "";
  font-family: "dashicons";
  color: rgba(17, 17, 17, 0.35);
  line-height: 24px;
  display: inline-block;
  font-size: 24px;
  vertical-align: -25%;
}
.wqe-Form .wqe-Checkbox > input:checked + label::before {
  color: #eb4166;
  animation: spin2 0.3s;
  transform: scale(1.2);
}

@keyframes spin2 {
  0% {
    transform: rotate(0) scale(1);
  }
  60% {
    transform: rotate(375deg) scale(1.2);
  }
  70% {
    transform: rotate(348deg) scale(1.2);
  }
  80% {
    transform: rotate(368deg) scale(1.2);
  }
  90% {
    transform: rotate(354deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}
.wqe-Form .wqe-Radio > label::before {
  content: "";
  background: rgba(17, 17, 17, 0.35);
  display: inline-block;
  height: 12.8px;
  width: 12.8px;
  border-radius: 100px;
  vertical-align: 0;
  margin-right: 4px;
}
.wqe-Form .wqe-Radio > input:checked + label::before {
  background: #eb4166;
  animation: jump 0.3s;
  transform: scale(1.2);
}

@keyframes jump {
  0% {
    transform: translateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  30% {
    transform: translateY(-8px) scale(1.1);
    animation-timing-function: ease-in;
  }
  60% {
    transform: translateY(0) scale(1.2);
    animation-timing-function: ease-out;
  }
  75% {
    transform: translateY(-4px) scale(1.2);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0) scale(1.2);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-2px) scale(1.2);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0) scale(1.2);
    animation-timing-function: ease-in;
  }
}
.wqe-Form .wqe-Select {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  width: auto;
}
.wqe-Form .wqe-Select > .wqe--input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  color: #111111;
  line-height: 1.5;
  padding: 7px 27px 7px 7px;
  border: 1px solid rgba(17, 17, 17, 0.26);
  border-radius: 0;
  margin: 0;
  outline: none;
  height: auto;
  background: white;
  transition: box-shadow 0.1s linear, border-color 0.1s linear;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-Select > .wqe--input:hover {
    box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.2);
    z-index: 2;
  }
}
.wqe-Form .wqe-Select > .wqe--input:focus {
  box-shadow: 0 0 0 4px rgba(235, 65, 102, 0.4);
  border: 1px solid rgba(17, 17, 17, 0.26);
  outline: none;
  animation: explosion 0.6s;
  z-index: 2;
}
.wqe-Form .wqe-Select > .wqe--input.wqe-is-invalid:not(:focus) {
  border-color: #dd4422;
}
.wqe-Form .wqe-Select > .wqe--input:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.wqe-Form .wqe-Select > .wqe--input::-ms-expand {
  display: none;
}
.wqe-Form .wqe-Select::after {
  display: block;
  position: absolute;
  right: 4px;
  top: 7px;
  content: "";
  font-family: "dashicons";
  font-size: 16px;
  pointer-events: none;
}

.wqe-Form .wqe-Echo {
  display: block;
  box-sizing: border-box;
  line-height: 1.5;
  padding: 8px 0;
}

.wqe-Form .wqe-Button.wqe-type-primary {
  background-color: #eb4166 !important;
  color: white !important;
  padding-left: 23px;
  padding-right: 23px;
  min-width: 180px;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-Button.wqe-type-primary:hover {
    background-color: #dc234b !important;
  }
}
.wqe-Form .wqe-Button.wqe-type-primary:focus {
  background-color: #eb4166 !important;
}
.wqe-Form .wqe-Button.wqe-type-primary:active {
  background-color: #dc234b !important;
}
.wqe-Form .wqe-Button.wqe-for-back::before {
  display: inline-block;
  font-family: "dashicons";
  vertical-align: top;
  margin-right: 4px;
  content: "";
}
.wqe-Form .wqe-Button.wqe-belongs-monitor {
  padding-left: 0;
  padding-right: 0;
  width: 40px;
}
.wqe-Form .wqe-Button.wqe-belongs-monmenu {
  padding-left: 0;
  padding-right: 0;
  width: 40px;
  border-color: transparent;
  background-color: transparent;
  box-shadow: none;
}
.wqe-Form .wqe-Button.wqe-belongs-product.wqe-for-decr {
  display: none;
}
.wqe-Form .wqe-Button.wqe-belongs-product.wqe-for-incr {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 292px;
  height: 250px;
  opacity: 0;
  z-index: 3;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor {
  position: absolute;
  left: -12px;
  top: -10px;
  box-sizing: border-box;
  padding: 0;
  max-width: none;
  width: 80px;
  height: 80px;
  z-index: 110;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 200px;
  text-align: center;
  background-color: #eb4166 !important;
  color: white !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 783px) {
  .wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor:hover {
    background-color: #dc234b !important;
  }
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor:focus {
  background-color: #eb4166 !important;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor:active {
  background-color: #dc234b !important;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor::before {
  content: "";
  font-family: dashicons;
  display: block;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 28px;
  height: 28px;
  font-size: 28px;
  vertical-align: top;
  text-align: center;
  transition: color 0.1s ease-in;
  pointer-events: none;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor > span {
  position: relative;
  font-size: 10px;
  pointer-events: none;
  height: 16px;
  line-height: 16px;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor > span > span {
  display: block;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor > span > span.wqe-is-run {
  transition: transform 0.2s ease-in-out;
  transition-delay: 0.05s;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor > span > span.wqe-is-run.wqe-for-removed {
  top: 0;
  position: absolute;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor > span > span.wqe-is-created {
  transform: translateY(-8em);
  opacity: 1;
}
.wqe-Form .wqe-Button.wqe-belongs-navbar.wqe-for-showmonitor > span > span.wqe-is-removed {
  top: 0;
  position: absolute;
  transform: translateY(8em);
}

@media screen and (max-width: 782px) {
  .wqe-Form .wqe-Button.wqe-type-primary {
    width: 100%;
  }
}
.wqe-Form .wqe-HNavigator {
  padding-top: 80px;
  position: relative;
}
.wqe-Form .wqe-HNavigator > .wqe--items > *:not(:last-child) {
  margin-bottom: 20px;
}

.wqe-Form .wqe-Attributes > *:not(:last-child) {
  margin-bottom: 32px;
}

.wqe-Form {
  color: red!important;/*#111111;nishida 入力内容を確認してください等*/
  padding: 0;
  position: relative;
  font-family: sans-serif;
  max-width: 600px;
}
.wqe-Form > .wqe--lead > .wqe--leadText {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.wqe-Form > *:not(:last-child) {
  margin-bottom: 32px;
}
