﻿

.side {
  /*display: none;*/
}
/* モーダルCSS */
.modal-area {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
}
.modal-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-cart-btn li {
  border-radius: 5px;
  margin: 12px;
}
.modal-cart-btn li a {
  width: 240px;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
}
.modal-cart {
  background: #707070;
}
.modal-order {
  background: #1FD5AD;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.modal-open {
  display: flex;
  align-items: baseline;
}
.cart-amazon {
  width: fit-content;
  margin: 20px auto 0;
}

@media screen and (max-width: 768px) {
  .side {
    display: block;
  }
  .modal-cart-btn {
    display: block;
  }
}