@charset "UTF-8";

.color .color-wrap {
  bottom: 150px;
}

#modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  z-index: 999;
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #ffffff;
  max-width: 750px;
  text-align: center;
  z-index: 1000;
}
.modal__content .cartModalClose {
  top: -20px;
  right: -10px;
  left: auto;
  width: 18px;
  height: 18px;
  background: #fff;
  padding: 14px;
  border-radius: 30px;
}
.l-btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
#btn {
  font-size: 30px;
  color: #8e7874;
  border-bottom: 1px solid #8e7874;
}
@media (width < 768px) {
  .color .color-wrap {
    bottom: 13.5%;
    width: 80%;
  }
  .l-btn {
    bottom: 8vw;
  }
  #btn {
    font-size: 3.733vw;
  }
  .modal__content {
    width: 90%;
  }
  .modal__content .cartModalClose {
    top: -5.333vw;
    right: -2.667vw;
    width: 3.733vw;
    height: 3.733vw;
    padding: 3.2vw;
    border-radius: 5.067vw;
  }
}