.titleArea {
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 2px #999;
  border-bottom: solid 2px #999;
  left: 15%;
  width: 70%;
  text-align: center;
  margin-bottom: 10px;
}
.titleArea::before, .titleArea::after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #999;
}
.titleArea::before {left: 7px;}
.titleArea::after {right: 7px;}

.topTitle {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  margin: 0;
}
.subTitle {
  position: relative;
  text-align: center;
  font-style: italic;
}
#hatabo {
  left: 100%;
  position: absolute;
}
#topBalloon {
  visibility: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}
.balloon {
  position: relative;
  width: 80%;
  left: 10%;
  height: auto;
  border: 1px solid #999;
  border-right: 4px solid #999;
  border-bottom: 4px solid #999;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;        /* CSS3草案 */
  -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 10px;   /* Firefox用 */
}
.balloon:before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 51%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid #999;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.balloon:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.newsBalloon{
  left: 15%;
  width: 70%;
  font-weight: bold;
  background-color: #ffd;
}
.gohanImg{
  width: 50px;
}


.ctrl{
  margin: 0 auto;
  width: 20px;
/*  text-align: center; */
  position: relative;
}
.progressCircle{
  height: 0;
  width: 20px;
  display: block;
  padding-bottom: 20px;
  position: relative;
  margin:10px;
}
.progressCircle svg {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transform: rotate(-90deg);
  top: 0;
  left: 0;
  overflow: visible;
}
.progressCircle .circle {
  fill: rgba(0,0,0,0);
  stroke-width: 50;
  stroke-dasharray: 0,157;
}
.progressCircle .pie {
/*  stroke: #00bcac; */
  stroke: #dcdcdc;
  webkit-animation-name: pie;
  animation-name: pie;
}
.progressCircle .base{
  fill: #f9f9f9;
}
@-webkit-keyframes pie {
/*  50%,100% { stroke-dasharray: 157,157,0,0;}*/
from {
  -webkit-transform:rotate(0deg);
}
to {
  -webkit-transform:rotate(360deg);
}
}
@keyframes pie {
/*  50%,100% { stroke-dasharray: 157,157,0,0;} */
from {
  transform:rotate(0deg);
  -webkit-transform:rotate(0deg);
}
to {
    transform:rotate(360deg);
  -webkit-transform:rotate(360deg);
}
}
