@charset "UTF-8";
:root {
  --color-black: #000000;
  --color-red: #cc0000;
  --color-white: #ffffff;
  --color-gray-t10: rgba(0, 0, 0, 0.1);
  --color-gray-t20: rgba(0, 0, 0, 0.2);
  --color-gray-10: #e6e6e6;
  --color-gray-15: #d9d9d9;
  --color-gray-20: #cccccc;
  --color-gray-30: #b2b2b2;
  --color-gray-55: #737373;
  --color-text: var(--color-black);
  --color-button-primary: var(--color-red);
  --color-button-secondary: var(--color-black);
  --color-soldout-text: #737373;
  --color-soldout-button: #b2b2b2;
  --color-toggle-background: #d9d9d9;
  --color-toggle-active: var(--color-white);
  --color-toggle-icon: var(--color-black);
  --color-danger: var(--color-red);
  --color-text-secondary: var(--color-gray-55);
  --color-share-x: rgb(0, 0, 0);
  --color-share-line: #06c755;
  --color-share-line-hover: #05b34d;
  --color-share-facebook: #1877f2;
}

body {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.75;
  margin: 0;
  padding: 0;
  color: var(--color-text);
}
body * {
  box-sizing: border-box;
}

@media (max-width: 576px) {
  br:not(.sp) {
    display: none;
  }
}

.sm {
  display: block;
}
.sm.md {
  display: block;
}
@media (min-width: 768px) {
  .sm {
    display: none;
  }
}

.md {
  display: none;
}
.md.sm {
  display: block;
}
@media (min-width: 768px) {
  .md.sm {
    display: block;
  }
}
@media (min-width: 768px) {
  .md {
    display: block;
  }
}

.wrapper {
  padding-bottom: 120px;
  background-image: url(/store/donabe/images/papaer_back_ex_wide.jpg);
  background-repeat: repeat-y;
  background-position: center top;
}

.logo {
  width: 122px;
  height: 60px;
  margin-right: 0;
  margin-left: auto;
}
.logo svg {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
  max-width: 960px;
  padding: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  header {
    flex-wrap: wrap;
  }
}
header h1 {
  display: flex;
  gap: 8px;
  margin: 0;
}
header h1 a {
  display: block;
}
header h1 a img {
  width: 88px;
}
header h1 > span {
  display: block;
}
header h1 strong {
  -webkit-text-stroke-width: 0.4px;
  text-stroke-width: 0.4px;
  font-size: clamp(16px, 5vw, 20px);
  line-height: 1.5;
  display: block;
}
header h1 strong + span {
  -webkit-text-stroke-width: 0.32px;
  text-stroke-width: 0.32px;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  margin-top: 6px;
}
header .release-date {
  -webkit-text-stroke-width: 0.32px;
  text-stroke-width: 0.32px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  position: sticky;
  top: 8px;
  display: block;
  width: 100%;
  margin: 0;
  color: var(--color-red);
  background: white;
}
@media (min-width: 768px) {
  header .release-date {
    width: 100%;
    order: 3;
  }
}
header ul {
  font-size: 12px;
  margin: 0;
  padding-left: 1em;
}
header ul li::marker {
  content: "＊";
}
@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    gap: 2.08333333vw;
    width: 96.66666667vw;
    padding: 16px 0;
  }
}

main {
  max-width: 960px;
  padding: 16px;
  margin-right: auto;
  margin-left: auto;
}
main .utils {
  position: sticky;
  z-index: 2;
  top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: max-width 0.3s ease;
}
main .utils .modal-open {
  padding-right: var(--scrollbar-width, 0px);
}
main .utils-before {
  position: absolute;
  top: -19px;
  width: 100%;
  height: 10px;
}
main .utils .share {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 2px solid var(--color-gray-15);
  background-color: var(--color-white);
}
main .utils .share > span {
  -webkit-text-stroke-width: 0.2px;
  text-stroke-width: 0.2px;
  content: "シェア";
  font-size: 10px;
  line-height: 1;
  letter-spacing: -0.2em;
  margin-bottom: 0.2em;
  color: var(--color-gray-55);
  writing-mode: vertical-rl;
}
main .utils .share ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
main .utils .share ul li button {
  display: block;
  padding: 0;
  cursor: pointer;
  border: 0 none;
  background-color: transparent;
  appearance: none;
}
main .utils .share ul li button svg {
  vertical-align: top;
  width: 28px;
  height: 28px;
}
main .utils .share ul li.share-x button svg {
  width: 26px;
  height: 26px;
  fill: var(--color-share-x);
}
main .utils .share ul li.share-line button svg {
  fill: var(--color-share-line);
}
main .utils .share ul li.share-facebook button svg {
  fill: var(--color-share-facebook);
}
main .utils .view-switcher {
  display: flex;
  justify-content: flex-end;
}
main .utils .view-switcher input {
  width: 0;
  height: 0;
  opacity: 0;
}
main .utils .view-switcher ul {
  position: relative;
  display: flex;
  gap: 4px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 2px solid var(--color-toggle-background);
  background-color: var(--color-toggle-background);
}
main .utils .view-switcher ul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  display: block;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  background-color: var(--color-toggle-active);
}
main .utils .view-switcher ul li {
  line-height: 1;
  position: relative;
  padding: 4px;
}
main .utils .view-switcher ul li svg {
  vertical-align: top;
  width: 24px;
  height: 24px;
  fill: var(--color-toggle-icon);
}
main .utils .view-switcher input:checked + ul::before {
  left: calc(100% - 32px);
}
@media (min-width: 768px) {
  main .utils {
    max-width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  main .utils {
    max-width: 100%;
  }
}
main .list + .list {
  margin-top: 80px;
}
main .list h2 {
  -webkit-text-stroke-width: 0.48px;
  text-stroke-width: 0.48px;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
  margin: 16px -16px;
  padding: 16px;
  color: var(--color-white);
  background-color: var(--color-black);
}
@media (min-width: 768px) {
  main .list h2 {
    margin-top: 24px;
    margin-right: 0;
    margin-bottom: 40px;
    margin-left: 0;
  }
}
main .list .products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  transition: max-width 0.3s ease;
}
body.toggle-checked main .list .products {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  body.toggle-checked main .list .products {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  main .list .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  main .list .products {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  main {
    padding: 48px 0;
  }
}
body.toggle-checked .product:nth-child(n+2) {
  margin-top: 0;
}
body.toggle-checked .product:nth-child(n+3) {
  margin-top: 40px;
}
.product:nth-child(n+2) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  body.toggle-checked .product:nth-child(n+3) {
    margin-top: 0px;
  }
  body.toggle-checked .product:nth-child(n+5) {
    margin-top: 40px;
  }
  .product:nth-child(n+2) {
    margin-top: 0;
  }
  .product:nth-child(n+3) {
    margin-top: 40px;
  }
}
.product h3 {
  -webkit-text-stroke-width: 0.48px;
  text-stroke-width: 0.48px;
  font-size: 24px;
  line-height: 1.5;
  margin: 8px 0;
}
body.toggle-checked .product h3 {
  -webkit-text-stroke-width: 0.32px;
  text-stroke-width: 0.32px;
  font-size: 16px;
}
body.toggle-checked .product .prices {
  font-size: 14px;
}
.product .price-note {
  font-size: 0.85em;
}
.product .spec {
  display: grid;
  grid-template-columns: repeat(2, 1.1fr 0.9fr);
}
body.toggle-checked .product .spec {
  grid-template-columns: 1.1fr 0.9fr;
}
body.toggle-checked .product .spec dt,
body.toggle-checked .product .spec dd {
  font-size: 14px;
}
body.toggle-checked .product .spec dt.header {
  grid-column: span 2;
}
body.toggle-checked .product .spec dt.header + dd {
  grid-column: span 2;
}
body.toggle-checked .product .spec dt.header + dd dl {
  grid-template-columns: repeat(2, 1fr);
}
body.toggle-checked .product .spec dt.header + dd dl dt,
body.toggle-checked .product .spec dt.header + dd dl dd {
  padding: 0.125em 0;
}
#bk .product .spec {
  grid-template-columns: 0.5fr 1.5fr;
}
.product .spec dt,
.product .spec dd {
  line-height: 1;
  display: table-cell;
  margin: -0.5px -0.5px;
  padding: 0;
  padding: 8px;
  border-top: 1px solid var(--color-gray-20);
  border-bottom: 1px solid var(--color-gray-20);
}
.product .spec dt {
  padding-right: 0;
}
.product .spec dt::after {
  content: "：";
}
.product .spec dd {
  padding-left: 0;
}
.product .spec dt.header {
  grid-column: span 4;
  padding-bottom: 0;
  border-bottom: 0 none;
}
.product .spec dt.header + dd {
  grid-column: span 4;
  padding-left: 8px;
  border-top: 0 none;
}
.product .spec dt.header + dd dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  padding-left: 1em;
}
.product .spec dt.header + dd dl dt,
.product .spec dt.header + dd dl dd {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.product .cart-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product .cart-controls p {
  line-height: 1;
  margin: 0;
}
.product .cart-controls p.stock {
  font-size: 14px;
}
.product .cart-controls p.stock.soldout {
  color: var(--color-soldout-text);
}
.product .cart-controls p.shipping {
  font-size: 14px;
}
body.toggle-checked .product .cart-controls p.shipping {
  width: 100%;
  margin-top: 8px;
}
.product .cart-controls p.shipping {
  margin-right: 0;
  margin-left: auto;
}

.amount-label,
.item-amount label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-right: 8px;
  padding: 1px 32px 1px 1px;
  cursor: pointer;
  color: var(--color-white);
  background-color: var(--color-button-primary);
}
.amount-label > span,
.item-amount label > span {
  font-size: 14px;
  writing-mode: vertical-rl;
}
.amount-label select,
.amount-label ::picker(select),
.item-amount label select,
.item-amount label ::picker(select) {
  appearance: base-select;
}
.amount-label select,
.item-amount label select {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 32px;
  height: 32px;
  padding: 4px 4px 4px 4px;
  color: var(--color-text);
  border: 0 none;
  border-radius: 0;
  background-color: var(--color-white);
  min-inline-size: 0;
  writing-mode: horizontal-tb;
}
.amount-label select:disabled,
.item-amount label select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  color: var(--color-soldout-text);
  background-color: var(--color-gray-10);
}
.amount-label ::picker(select),
.item-amount label ::picker(select) {
  top: calc(anchor(bottom) + 2px);
  border: 1px solid var(--color-gray-20);
  border-radius: 4px;
  box-shadow: 2px 2px 0px 0 var(--color-gray-t10);
}
.amount-label ::picker-icon,
.item-amount label ::picker-icon {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 24px;
  height: 24px;
  padding: 4px;
  color: var(--color-white);
  background-color: var(--color-button-primary);
  background-image: url(../img/picker-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.amount-label option,
.item-amount label option {
  display: flex;
  padding: 4px 12px 4px 4px;
  color: var(--color-text);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-20);
}
.amount-label option:last-child,
.item-amount label option:last-child {
  border-bottom: 0px none;
}
.amount-label option:checked,
.item-amount label option:checked {
  background-color: var(--color-gray-10);
}
.amount-label option::checkmark,
.item-amount label option::checkmark {
  content: url(../img/check.svg);
}

.item-amount label {
  font-size: 12px;
  min-height: 28px;
  margin-right: 0;
  padding-right: 28px;
}
.item-amount label span {
  font-size: 12px;
}
.item-amount label select {
  width: 28px;
  height: 28px;
}
.item-amount label ::picker-icon {
  width: 20px;
  height: 22px;
  background-size: 20px 20px;
}

.slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.slideshow .slides {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-gray-15);
  aspect-ratio: 1;
}
.slideshow .slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
.slideshow .slides .slide.active {
  opacity: 1;
}
.slideshow .slides .slide[data-src] {
  background: var(--color-gray-15);
}
.slideshow .slides .slide[data-src]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
  border: 3px solid var(--color-gray-30);
  border-top: 3px solid var(--color-black);
  border-radius: 50%;
}
.slideshow .dots {
  display: flex;
  justify-content: center;
  gap: 1px;
  width: 100%;
  margin-top: 1px;
}
.slideshow .dots .dot {
  position: relative;
  overflow: hidden;
  flex-basis: max-content;
  flex-grow: 1;
  flex-shrink: 1;
  width: auto;
  height: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: var(--color-gray-20);
}
.slideshow .dots .dot:hover {
  background-color: var(--color-gray-55);
}
.slideshow .dots .dot.active {
  background-color: var(--color-black);
}
.slideshow .dots .dot.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--progress, 0) * 100%);
  height: 100%;
  transition: width 0.1s linear;
  background-color: var(--color-red);
}
.slideshow .slide-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 1px;
}
.slideshow .slide-controls .slide-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slideshow .slide-controls .slide-nav {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--color-black);
  border: none;
  background-color: transparent;
}
.slideshow .slide-controls .slide-nav svg {
  width: 24px;
  height: 24px;
}
.slideshow .slide-controls .slide-nav:hover {
  background-color: var(--color-gray-t10);
}
.slideshow .slide-controls .slide-nav:active {
  background-color: var(--color-gray-55);
}
.slideshow .slide-controls .slide-counter {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  min-width: 30px;
}
.slideshow.single .dots,
.slideshow.single .slide-navigation {
  display: none;
}

.selectedItems {
  display: none;
}
.modal-open .selectedItems {
  padding-right: var(--scrollbar-width, 0px);
}
.selectedItems ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.selectedItems ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-10);
}
.selectedItems ul li:last-child {
  border-bottom: none;
}
.selectedItems ul li .item-image {
  flex-shrink: 0;
}
.selectedItems ul li .item-image img {
  object-fit: cover;
  width: 60px;
  height: 60px;
}
.selectedItems ul li .item-name {
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}
.selectedItems ul li .item-amount {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}
.selectedItems ul li .item-amount .remove-item {
  -webkit-text-stroke-width: 0.24px;
  text-stroke-width: 0.24px;
  font-family: "Zen Old Mincho", serif;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 24px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-text-secondary);
  border: none;
  border-radius: 50%;
  background-color: transparent;
}
.selectedItems ul li .item-amount .remove-item .icon {
  width: 16px;
  height: 16px;
}
.selectedItems ul li .item-amount .restore-item {
  -webkit-text-stroke-width: 0.24px;
  text-stroke-width: 0.24px;
  font-family: "Zen Old Mincho", serif;
  font-size: 12px;
  white-space: nowrap;
  display: none;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin-right: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-white);
  border: 0 none;
  background-color: var(--color-button-secondary);
}
.selectedItems ul li.removed {
  opacity: 0.5;
  background-color: var(--color-gray-t10);
}
.selectedItems ul li.removed .item-image,
.selectedItems ul li.removed .item-name {
  opacity: 0.6;
}
.selectedItems ul li.removed .item-amount label {
  display: none;
}
.selectedItems ul li.removed .item-amount .remove-item {
  display: none;
}
.selectedItems ul li.removed .item-amount .restore-item {
  display: flex;
}
.selectedItems .noItem {
  font-size: 16px;
  text-align: center;
  padding: 40px 20px;
  color: var(--color-gray-55);
}
.selectedItems .modal-submit-area {
  position: sticky;
  bottom: 16px;
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-gray-20);
  background-color: var(--color-white);
}
.selectedItems .modal-submit-area .modal-submit {
  -webkit-text-stroke-width: 0.32px;
  text-stroke-width: 0.32px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  cursor: pointer;
  color: var(--color-white);
  border: 0 none;
  background-color: var(--color-button-primary);
  appearance: none;
}
.selectedItems .modal-submit-area .modal-submit svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  fill: var(--color-white);
}
.selectedItems .modal-submit-area .modal-submit:hover {
  opacity: 0.9;
}
.selectedItems .modal-submit-area .modal-submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: var(--color-soldout-button);
}
@media (max-width: 767px) {
  .selectedItems {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    background-color: var(--color-white);
  }
  .selectedItems.show {
    display: block;
    transform: translateY(0);
  }
  .selectedItems .modal-header {
    position: sticky;
    z-index: 1;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-20);
    background-color: var(--color-white);
  }
  .selectedItems .modal-header h2 {
    -webkit-text-stroke-width: 0.4px;
    text-stroke-width: 0.4px;
    font-size: 20px;
    margin: 0;
  }
  .selectedItems .modal-header .close-button {
    -webkit-text-stroke-width: 0.32px;
    text-stroke-width: 0.32px;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--color-white);
    border: 0 none;
    background-color: var(--color-button-secondary);
    appearance: none;
  }
  .selectedItems .modal-header .close-button svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
  }
  .selectedItems .modal-content {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .selectedItems {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .selectedItems.show {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
  .selectedItems .modal-dialog {
    overflow: hidden;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .selectedItems .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-gray-20);
  }
  .selectedItems .modal-header h2 {
    -webkit-text-stroke-width: 0.4px;
    text-stroke-width: 0.4px;
    font-size: 20px;
    margin: 0;
  }
  .selectedItems .modal-header .close-button {
    -webkit-text-stroke-width: 0.32px;
    text-stroke-width: 0.32px;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--color-white);
    border: 0 none;
    background-color: var(--color-button-secondary);
    appearance: none;
  }
  .selectedItems .modal-header .close-button svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
  }
  .selectedItems .modal-content {
    overflow-y: auto;
    max-height: calc(80vh - 120px);
    padding: 20px;
  }
}

.bottom-controls {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
}
.modal-open .bottom-controls {
  padding-right: var(--scrollbar-width, 0px);
}
@media (min-width: 768px) {
  .bottom-controls {
    bottom: 24px;
    left: 50%;
    box-sizing: content-box;
    max-width: 480px;
    transform: translateX(-50%);
  }
}
.bottom-controls .buttons {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-top: 1px solid var(--color-gray-t20);
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .bottom-controls .buttons {
    border: 1px solid var(--color-gray-t20);
  }
}
.bottom-controls button {
  -webkit-text-stroke-width: 0.32px;
  text-stroke-width: 0.32px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  color: var(--color-white);
  border: 0 none;
  appearance: none;
}
.bottom-controls button svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}
.bottom-controls button.showSelectedItems {
  width: 40%;
  max-width: 280px;
  background-color: var(--color-button-secondary);
}
.bottom-controls button.submit {
  width: 60%;
  background-color: var(--color-button-primary);
}
.bottom-controls button.submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: var(--color-soldout-button);
}
.bottom-controls button.submit:disabled svg {
  opacity: 0.7;
  fill: var(--color-white);
}

footer {
  margin-top: 80px;
}
footer .banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 16px;
  list-style: none;
  justify-items: center;
}
@media (min-width: 576px) {
  footer .banners {
    grid-template-columns: 1fr 1fr;
  }
}
footer .banners-wide .banner.banner-content {
  width: clamp(340px, 80vw, min(576px, 100%));
}
@media (min-width: 576px) {
  footer .banners-wide .banner.banner-content:nth-child(1n) {
    justify-self: center;
  }
  footer .banners-wide .banner.banner-content:nth-child(2n) {
    justify-self: center;
  }
}
@media (min-width: 576px) {
  footer .banners-wide {
    grid-template-columns: 1fr;
  }
}
footer .banners .banner {
  -webkit-text-stroke-width: 0.28px;
  text-stroke-width: 0.28px;
  font-size: 14px;
  position: relative;
  z-index: 0;
  width: clamp(210px, 56vw, min(280px, 100%));
}
@media (min-width: 576px) {
  footer .banners .banner:nth-child(1n) {
    justify-self: right;
  }
  footer .banners .banner:nth-child(2n) {
    justify-self: left;
  }
}
footer .banners .banner-cart {
  padding: 8px;
  background-color: var(--color-button-primary);
}
footer .banners .banner-cart::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(../img/cart-icon.png);
  background-size: contain;
}
footer .banners .banner-cart a p {
  color: var(--color-white);
}
footer .banners .banner a {
  text-decoration: none;
  display: block;
  color: var(--color-black);
}
footer .banners .banner img {
  vertical-align: top;
  width: 100%;
  height: auto;
}
footer .banners .banner p {
  line-height: 1.25;
  margin: 0;
}
footer .copyright {
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-gray-60);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
