@charset "UTF-8";
/* 商品購入希望フォーム
================================================== */
.product-order-page .contents__wrap {
  max-width: 800px;
}
.product-order-page__admin-note {
  margin-top: 24px;
  padding: 16px;
  background: #F7EDEB;
  border-left: 3px solid #B34A36;
  font-size: 1.4rem;
}
.product-order-page #contact-section {
  margin-top: 180px;
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .product-order-page .c-btn-circle-fixed {
    display: none !important;
  }
}
.product-order-page .c-btn-sp-fixed {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .product-order-page .page-top {
    bottom: 20px;
  }
}

.product-order {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.product-order__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  text-align: center;
  margin-bottom: 8px;
}
.product-order__flow-step {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #8C857A;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.product-order__flow-step strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  font-weight: 500;
  font-size: 1.4rem;
  color: inherit;
}
.product-order__flow-step.is-current {
  color: #111111;
}
.product-order__flow-step.is-current strong {
  color: #ffffff;
  background: #8C857A;
  border-color: #8C857A;
}
.product-order__flow-step.is-done {
  color: #8C857A;
}
.product-order__flow-step.is-done strong {
  border-color: #8C857A;
  color: #8C857A;
}
.product-order__section {
  display: grid;
  gap: 16px;
  padding-top: 0;
  margin-top: 16px;
  border-top: 1px solid #dddddd;
}
.product-order__section + .product-order__section {
  padding-top: 8px;
  margin-top: 20px;
}
.product-order h2 {
  margin: 80px auto 20px;
}
.product-order__text-muted {
  margin: 0;
  color: #8C857A;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.product-order__text-small {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.product-order__notice {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px 16px;
  background: #F5F3EB;
  border-left: 3px solid #8C857A;
}
.product-order__notice p {
  margin: 0;
  line-height: 1.55;
}
.product-order__notice .product-order__text-small {
  margin-top: 2px;
}
.product-order__notice + .product-order__check, .product-order__notice ~ .product-order__check {
  margin-top: 28px;
}
.product-order__notice-list {
  margin: 4px 0 0;
  padding-left: 1.2em;
  font-size: 1.3rem;
  line-height: 1.6;
}
.product-order__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.product-order__check input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  margin: 2px 0 0;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  transform: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.product-order__check input[type=checkbox]::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  margin: 3px auto 0;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.product-order__check input[type=checkbox]:checked {
  background: #8C857A;
  border-color: #8C857A;
}
.product-order__check input[type=checkbox]:checked::after {
  transform: rotate(45deg) scale(1);
}
.product-order__check input[type=checkbox]:focus-visible {
  outline: 2px solid #8C857A;
  outline-offset: 2px;
}
.product-order__check a {
  color: #111111;
  text-decoration: underline;
}
.product-order__required {
  color: #B34A36;
  font-size: 1.2rem;
  margin-left: 2px;
}
.product-order__error {
  margin: 0;
  color: #B34A36;
  font-size: 1.3rem;
}
.product-order__empty {
  margin: 0;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #dddddd;
  text-align: center;
  color: #333333;
}
.product-order__filters {
  display: grid;
  gap: 10px;
  margin: -8px 0;
}
.product-order__filter-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.product-order__filter-label {
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #999999;
  font-weight: 700;
}
.product-order__category-nav, .product-order__brand-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
}
.product-order__filter-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.product-order__category-btn, .product-order__brand-btn {
  margin: 0;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #cccccc;
  border-radius: 100vh;
  background: #ffffff;
  color: #111111;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out, top 0.3s ease-out, right 0.3s ease-out, bottom 0.3s ease-out, left 0.3s ease-out, flex 0.3s ease-out, visibility 0.3s ease-out;
}
.product-order__category-btn:hover, .product-order__brand-btn:hover {
  border-color: #999999;
}
.product-order__category-btn[hidden], .product-order__brand-btn[hidden] {
  display: none;
}
.product-order__category-btn.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  font-weight: 700;
}
.product-order__brand-btn {
  border-color: #8C857A;
  color: #8C857A;
}
.product-order__brand-btn.is-active {
  background: #8C857A;
  color: #ffffff;
  border-color: #8C857A;
  font-weight: 700;
}
.product-order__products {
  display: grid;
  gap: 0;
}
.product-order__category {
  display: grid;
  gap: 6px;
}
.product-order__category.is-hidden, .product-order__category[hidden] {
  display: none !important;
}
.product-order__category:not(.is-hidden):not([hidden]) ~ .product-order__category:not(.is-hidden):not([hidden]) {
  margin-top: 16px;
}
.contents__wrap .product-order__category > h3 {
  justify-self: start;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}
.product-order__category-title {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 500;
  color: #111111;
  text-align: left;
}
.product-order__category-note {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #8C857A;
}
.product-order__category-list {
  display: grid;
  gap: 10px;
}
.product-order__product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  grid-template-areas: "title title" "body ops";
  column-gap: 16px;
  row-gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-order__product.is-hidden, .product-order__product[hidden] {
  display: none !important;
}
.product-order__product.is-selected {
  border-color: #8C857A;
  background: #F5F3EB;
}
.product-order__product.is-selected .product-order__product-status {
  display: inline-flex;
}
.product-order__product.is-selected .product-order__product-image {
  border-color: #8C857A;
}
.product-order input.product-order__product-check, .product-order__product-check {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  transform: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.product-order input.product-order__product-check::after, .product-order__product-check::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  margin: 3px auto 0;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.product-order input.product-order__product-check:checked, .product-order__product-check:checked {
  background: #8C857A;
  border-color: #8C857A;
}
.product-order input.product-order__product-check:checked::after, .product-order__product-check:checked::after {
  transform: rotate(45deg) scale(1);
}
.product-order input.product-order__product-check:focus-visible, .product-order__product-check:focus-visible {
  outline: 2px solid #8C857A;
  outline-offset: 2px;
}
.product-order__product-title-row {
  grid-area: title;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding-right: 50px;
}
.product-order__product-name-wrap {
  display: block;
  min-width: 0;
  cursor: pointer;
}
.product-order__product-body {
  grid-area: body;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}
.product-order__product-image {
  position: relative;
  width: 120px;
  height: 120px;
  aspect-ratio: 1;
  flex-shrink: 0;
  background: #F5F5F5;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(51, 51, 51, 0.06);
}
.product-order__product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
.product-order__product-image-empty {
  position: absolute;
  inset: 0;
  display: block;
  background: #F5F5F5;
}
.product-order__product-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  min-height: 100%;
}
.product-order__product-name {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.product-order__product-status {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0;
  padding: 2px 8px;
  border-radius: 100vh;
  color: #ffffff;
  background: #8C857A;
  font-size: 1.1rem;
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
}
.product-order__product-meta {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #8C857A;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.product-order__product-price {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
  letter-spacing: 0.04em;
}
.product-order__product-desc {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #8C857A;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.product-order__product-more {
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  color: #8C857A;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-decoration: underline;
  cursor: pointer;
}
.product-order__product-more:hover {
  opacity: 0.6;
}
.product-order__product-note {
  margin-top: auto;
  padding: 8px 10px;
  background: #F7EDEB;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  color: #B34A36;
  line-height: 1.6;
}
.product-order__product-ops {
  grid-area: ops;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  align-self: end;
  gap: 10px;
  min-width: 0;
}
.product-order__product-ops-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}
.product-order__quantity {
  display: grid;
  grid-template-columns: auto 64px;
  gap: 6px;
  align-items: center;
  margin: 0;
  width: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
}
.product-order__quantity select.product-order__qty {
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 36px;
  padding: 0 24px 0 8px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 6px;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.product-order__quantity select.product-order__qty:disabled {
  background-color: #eeeeee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23bbbbbb' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  color: #999999;
  cursor: default;
}
.product-order__selection {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: #F5F3EB;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.product-order__selection-main {
  display: grid;
  gap: 8px;
  justify-items: start;
}
.product-order__selection-clear {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: #8C857A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-decoration: underline;
  cursor: pointer;
}
.product-order__selection-clear:hover:not(:disabled) {
  opacity: 0.6;
}
.product-order__selection-clear:disabled {
  color: #999999;
  text-decoration: none;
  cursor: default;
  opacity: 0.7;
}
.product-order__selection-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
}
.product-order #product-order-selection-count {
  font-weight: 400;
  color: #8C857A;
}
.product-order__selection-total {
  font-size: 1.5rem;
  color: #111111;
  letter-spacing: 0.04em;
}
.product-order__sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 6px 12px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #dddddd;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.product-order__sticky-bar[hidden] {
  display: none !important;
}
.product-order__sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
  min-height: 36px;
}
.product-order__sticky-bar-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #8C857A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-order__sticky-bar-meta strong {
  font-size: 1.3rem;
  color: #111111;
  font-weight: 700;
}
.product-order__sticky-bar-btn {
  flex: 0 0 auto;
  margin: 0;
  padding: 7px 12px;
  border: none;
  border-radius: 8px;
  background: #8C857A;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
}
.product-order__sticky-bar-btn:hover {
  opacity: 0.6;
}
.product-order.has-sticky-bar {
  padding-bottom: 56px;
}
.product-order__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.product-order__field {
  display: grid;
  gap: 6px;
}
.product-order__field input,
.product-order__field select {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.product-order__field input[type=tel],
.product-order__field input[type=date] {
  font-family: "Noto Sans JP", sans-serif;
}
.product-order__field input[type=date] {
  display: block;
  box-sizing: border-box;
  min-height: 48px;
  text-align: left;
  color: #999999;
}
.product-order__field input[type=date]::-webkit-date-and-time-value {
  min-height: 1.2em;
  text-align: left;
  text-align: -webkit-left;
  color: #999999;
}
.product-order__field input[type=date]::-webkit-datetime-edit, .product-order__field input[type=date]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.product-order__field input[type=date]::-webkit-datetime-edit-text, .product-order__field input[type=date]::-webkit-datetime-edit-year-field, .product-order__field input[type=date]::-webkit-datetime-edit-month-field, .product-order__field input[type=date]::-webkit-datetime-edit-day-field {
  color: #999999;
}
.product-order__field input[type=date]::-webkit-inner-spin-button {
  height: auto;
}
.product-order__field input[type=date].is-filled {
  color: #111111;
}
.product-order__field input[type=date].is-filled::-webkit-datetime-edit-text, .product-order__field input[type=date].is-filled::-webkit-datetime-edit-year-field, .product-order__field input[type=date].is-filled::-webkit-datetime-edit-month-field, .product-order__field input[type=date].is-filled::-webkit-datetime-edit-day-field, .product-order__field input[type=date].is-filled::-webkit-date-and-time-value {
  color: #111111;
}
.product-order__field--full {
  grid-column: 1/-1;
}
.product-order__label {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.product-order__actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding-top: 56px;
  text-align: center;
}
.product-order__actions--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.product-order__btn {
  margin-top: 0 !important;
  min-width: 280px;
  max-width: 100%;
  cursor: pointer;
  border: none;
}
.product-order__btn.c-btn-border {
  background: #ffffff;
  color: #8C857A;
  border: 1px solid #8C857A;
}
.product-order__btn.c-btn-border:hover {
  opacity: 0.6;
}
.product-order__confirm {
  display: grid;
  gap: 0;
  border: 1px solid #dddddd;
  border-radius: 8px;
  overflow: hidden;
}
.product-order__confirm-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid #eeeeee;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.product-order__confirm-row:first-child {
  border-top: none;
}
.product-order__confirm-row dt {
  margin: 0;
  color: #8C857A;
  font-weight: 400;
}
.product-order__confirm-row dd {
  margin: 0;
  word-break: break-word;
}
.product-order__confirm-products {
  margin: 0;
  padding-left: 1.2em;
}
.product-order__complete .product-order__notice {
  text-align: left;
}

#container.has-product-order-sticky .page-top {
  bottom: 64px;
}

.product-order-cf7 br {
  display: none;
}
.product-order-cf7 p {
  margin: 0;
}
.product-order-cf7 .product-order__form-grid > p {
  display: contents;
}
.product-order-cf7 .wpcf7-form {
  display: grid;
  gap: 0;
}
.product-order-cf7 .product-order__form-grid {
  margin-top: 20px;
}
.product-order-cf7 .product-order__heading ~ .product-order__heading {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #dddddd;
}
.product-order-cf7 .product-order__notice {
  margin: 0;
}
.product-order-cf7 .product-order__check {
  display: flex;
  margin-top: 28px;
  margin-bottom: 8px;
}
.product-order-cf7 input[type=date] {
  color: #999999;
}
.product-order-cf7 input[type=date]::-webkit-datetime-edit-text, .product-order-cf7 input[type=date]::-webkit-datetime-edit-year-field, .product-order-cf7 input[type=date]::-webkit-datetime-edit-month-field, .product-order-cf7 input[type=date]::-webkit-datetime-edit-day-field, .product-order-cf7 input[type=date]::-webkit-date-and-time-value {
  color: #999999;
}
.product-order-cf7 input[type=date].is-filled {
  color: #111111;
}
.product-order-cf7 input[type=date].is-filled::-webkit-datetime-edit-text, .product-order-cf7 input[type=date].is-filled::-webkit-datetime-edit-year-field, .product-order-cf7 input[type=date].is-filled::-webkit-datetime-edit-month-field, .product-order-cf7 input[type=date].is-filled::-webkit-datetime-edit-day-field, .product-order-cf7 input[type=date].is-filled::-webkit-date-and-time-value {
  color: #111111;
}
.product-order-cf7 .wpcf7-form-control-wrap {
  display: block;
}
.product-order-cf7 .wpcf7-spinner,
.product-order-cf7 .product-order__cf7-hidden {
  display: none !important;
}
.product-order-cf7--input .product-order__actions {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
}
.product-order-cf7--input .product-order__actions > p {
  display: contents;
}
.product-order-cf7--input .wpcf7-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 100%;
  margin: 0;
  padding: 16px 28px;
  border: none;
  border-radius: 8px;
  background: #8C857A;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
}
.product-order-cf7--input .wpcf7-submit:hover {
  opacity: 0.6;
}
.product-order-cf7--input .product-order__text-muted {
  width: 100%;
  text-align: center;
}
.product-order-cf7--input .wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: -28px;
  display: inline-block !important;
  margin: 0;
  transform: translateX(-50%);
}
.product-order-cf7--confirm .product-order__confirm {
  margin-top: 20px;
}
.product-order-cf7--confirm .product-order__confirm-row dd {
  white-space: pre-line;
}
.product-order-cf7--confirm .product-order__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
  padding-top: 0;
}
.product-order-cf7--confirm .product-order__actions > p {
  display: contents;
}
.product-order-cf7--confirm .wpcf7-submit,
.product-order-cf7--confirm .wpcf7-previous {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 240px;
  width: auto !important;
  min-width: 0;
  max-width: 280px;
  margin: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 16px 28px;
  line-height: 1.4;
  box-sizing: border-box;
}
.product-order-cf7--confirm .wpcf7-submit {
  background: #8C857A;
  color: #ffffff;
  border: none;
}
.product-order-cf7--confirm .wpcf7-previous {
  background: #ffffff;
  color: #8C857A;
  border: 1px solid #8C857A;
}
.product-order-cf7--confirm .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: -28px;
  display: inline-block !important;
}
.product-order-cf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}

@media (max-width: 620px) {
  .product-order-cf7--confirm .product-order__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-order-cf7--confirm .wpcf7-submit,
  .product-order-cf7--confirm .wpcf7-previous {
    flex: none;
    width: 100% !important;
    max-width: none;
  }
  .product-order__section {
    gap: 12px;
  }
  .product-order__filters {
    gap: 6px;
    margin: -4px 0;
  }
  .product-order__filter-row {
    gap: 4px 6px;
  }
  .product-order__category {
    gap: 4px;
  }
  .product-order__category:not(.is-hidden):not([hidden]) ~ .product-order__category:not(.is-hidden):not([hidden]) {
    margin-top: 12px;
  }
  .product-order__category-list {
    gap: 8px;
  }
  .product-order__product {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "body" "ops";
    row-gap: 8px;
    align-items: stretch;
    padding: 12px;
  }
  .product-order__product-title-row {
    padding-right: 0;
    gap: 8px;
  }
  .product-order__product-body {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }
  .product-order__product-image {
    width: 76px;
    height: 76px;
    border-radius: 8px;
  }
  .product-order__product-status {
    position: static;
    top: auto;
    right: auto;
    flex-shrink: 0;
    align-self: center;
  }
  .product-order__product-ops {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    gap: 8px 12px;
    padding-top: 6px;
    border-top: 1px solid #eeeeee;
  }
  .product-order__product-ops-right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    width: auto;
    margin-left: auto;
  }
  .product-order__quantity {
    width: auto;
    grid-template-columns: auto 64px;
  }
  .product-order__quantity select.product-order__qty {
    font-size: 1.6rem;
    height: 40px;
    width: 72px;
    min-width: 72px;
    max-width: 72px;
  }
  .product-order__form-grid {
    grid-template-columns: 1fr;
  }
  .product-order__field--full {
    grid-column: auto;
  }
  .product-order__confirm-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .product-order__actions--row {
    flex-direction: column;
    align-items: stretch;
  }
  .product-order__btn {
    min-width: 0;
    width: 100%;
  }
  .product-order__selection {
    align-items: stretch;
    flex-direction: column;
  }
  .product-order__selection-meta {
    justify-items: end;
    text-align: right;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .product-order__product-body {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
  }
  .product-order__product-image {
    width: 72px;
    height: 72px;
  }
}