/*基本設定*/
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;
}
img {
  margin: 0;
}

.cont {
  margin-left: auto;
  margin-right: auto;
}

.title_img {
  width: 80%;
  max-width: 480px;
  text-align: center;
}

.box {
	width: 400px;
	height: 400px;
	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;
  }
}

/*ボタン系*/
div.circle {
    background: #cccccc;
    width: 26%;
    height: auto;
    line-height: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.3);
    border-bottom: solid 6px #666666;
    transition: .3s;
    position: absolute;
    cursor: pointer;
}
div.circle::before {
  content: "";
  padding-top: 100%;
  display: block;
}
@media screen and (max-width: 720px) {
  div.circle {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    border-bottom: solid 5px #666666;
  }
}
@media screen and (max-width: 360px) {
  div.circle {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    border-bottom: solid 4px #666666;
  }
}
.circle.pushed {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: none;
    border-bottom: none;
}
.circle.yes {
  background: #77ff77;
}
.circle.no {
  background: #880000;
}

#c0 {top:5%; left: 37%;}
#c1 {top:21%; left: 7%;}
#c2 {top:21%; left: 67%;}
#c3 {top:37%; left: 37%;}
#c4 {top:53%; left: 7%;}
#c5 {top:53%; left: 67%;}
#c6 {top:69%; left: 37%;}

.clear_box {
  width: 100%;
  margin: 0;
  top: 25%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  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;
}
@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: 0 1.0rem;
}
@media screen and (max-width: 720px) {
  .num_text {
    font-size: 4.0rem;
  }
  .num_img {
    width: 30px;
    margin: 0 0.5rem;
  }
}

div.retry_btn {
  width: 150px;
  height: auto;
  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;
  }
}

#clear_tweet{
	display : none;
}