/*基本設定*/
body {
  background-color: #ddffdd;
}

/*リンクの色*/
a:link{color: #ff3333}
a:visited{color: #ff0099}
a:hover{color: #ff3366}
a:active{color: #ff6699}

p {
  color: #004400;
}
b, .b, strong .strong {
  color: #000099;
}
.nodisp {
  display: none!important;
}

.cont {
  margin-left: auto;
  margin-right: auto;
}

.title_img {
  width: 80%;
  max-width: 480px;
  text-align: center;
}

img {
  margin: 0;
}

.box {
	width: 480px;
	height: 480px;
	margin: auto;
  background-color: #ffffcc;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 720px) {
  .box {
    width: 360px;
    height: 360px;
    /* padding: 2%; */
    border-radius: 10px;
  }
}
@media screen and (max-width: 360px) {
  .box {
    width: 300px;
    height: 300px;
    border-radius: 10px;
  }
}

/*ボタン系*/
.hwrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}
.wwrapper {
  width: 100%;
  height: 25%;
  display: flex;
  justify-content: space-around;
}
.push_btn {
  width: 25%;
  height: 100%;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.3);
  border-bottom: solid 6px #666666;
  transition: .3s;
  cursor: pointer;
}
@media screen and (max-width: 720px) {
  .push_btn {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    border-bottom: solid 5px #666666;
  }
}
@media screen and (max-width: 360px) {
  .push_btn {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    border-bottom: solid 4px #666666;
  }
}
.push_btn img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.push_btn.pushed img {
  cursor: default;
}

.push_btn.pushed {
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: none;
  border-bottom: none;
}

.clear_box {
  width: 100%;
  margin: 0;
  top: 25%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 10;
}
.clear_box > div {
  margin: 0 auto;
}
.clear_text {
  font-size: 5.0rem;
  color: white;
  margin: 0;
  line-height: 2.0;
  text-align: center;
}
@media screen and (max-width: 720px) {
  .clear{
    width: 100%;
    margin: -2%;
  }
  .clear_text {
    line-height: 1.5;
  }
}

.num_text {
  font-size: 6.0rem;
}
.num_img {
  width: 50px;
  margin: 3.0rem 1.0rem 0;
}
@media screen and (max-width: 720px) {
  .num_text {
    font-size: 4.0rem;
  }
  .num_img {
    width: 30px;
    margin: 2.0rem 0.5rem 0;
  }
}

div.retry_btn {
  width: 150px;
  height: 2.8rem;
  font-size: 2.8rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  text-align: center;
  margin: 1.0rem auto;
  padding: 0.8rem 0 1.0rem;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 720px) {
  div.retry_btn {
    width: 100px;
    font-size: 1.8rem;
  }
}
.retry_btn:active {
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.retry_img {
  width: 2.8rem;
  height: 2.8rem;
  margin-left: 1.0rem;
}
@media screen and (max-width: 720px) {
  .retry_img {
    margin-left: 0.5rem;
  }
}