@charset "UTF-8";
body {
  background-color: white;
}

table {
  margin: 10px auto;
}

td.card {
  width: 5.5vw;
  height: 8.25vw;
  margin: 0.5vw;
  background-size: cover;
}

td.back {
  background-image: url(./images/back.png) !important;
}

#startButton,
#stopButton {
  width: 4vw;
  height: 4vw;
}

.gameField {
  text-align: center;
  margin-top: 3rem;
}

.radioButton {
  margin-left: 1em;
  padding: 5px;
  border: 1px solid #000;
  background-color: #96ffc7;
  font-weight: bold;
}

body.manual {
  background-color: rgb(206, 206, 206);
}

.content {
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  padding: 3rem 5rem;
}
.content h1 {
  text-align: center;
}
.content p {
  margin-left: 1em;
}

.manualImage {
  width: 50%;
  margin: auto;
  border: #000 solid 1px;
  display: block;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}/*# sourceMappingURL=MachingCard.css.map */