@charset "UTF-8";
body {
  background-color: white;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

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

.gameField {
  text-align: center;
  margin: 3rem auto;
  width: 95vw;
}

#tilingField {
  position: relative;
  width: 100%;
  height: 70vh;
  margin: auto;
}
#tilingField .tile {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  display: inline-block;
  text-decoration: none;
  background: #ff8181;
  color: #fff;
  border-radius: 15%;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border: none;
  border-bottom: solid 3px #bd6565;
  transition: 0.2s;
}
#tilingField .tile p {
  font-size: 3vw;
  margin: auto;
}
#tilingField .tile:active {
  transform: translateY(2px);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  border-bottom: none;
}

#onHint {
  height: 4rem;
  width: 4rem;
  display: none;
  position: absolute;
  left: 85vw;
  top: 7vh;
  background-color: rgb(208, 255, 0);
}

.hint {
  height: 10rem;
  position: absolute;
  left: 85vw;
  top: 0;
  z-index: -5;
  border: 0.1rem solid;
}

.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=KanaHiroi.css.map */