@charset "utf-8";

/*  --HTML--  */

html {
  height: 100%;
}


/*  --BODY--  */

body {
  color: #000;
  height: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
  background: #FFF;
  word-wrap: break-word;
  overflow: visible;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  left: 0;
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
}

a {
  overflow: hidden;
  outline: none;
  text-decoration: none;
  color: #333;
}

a img {}

a:hover {
  text-decoration: underline;
}

a:hover img {}

a img,
img {
  border: 0;
}

abbr,
acronym {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

blockquote,
dd,
div,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
span,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

caption,
th {
  text-align: left;
}

code,
kbd,
pre,
samp,
tt {
  font-family: monospace;
  line-height: 100%;
}


/*  for IE7  */

*+html code,
kbd,
pre,
samp,
tt {
  font-size: 108%;
}

.for-sp {
  display: none!important;
}

#timerBox {
  height: 100%;
  display: flex;
  /* 2 */
  justify-content: center;
  /* 3 */
  align-items: center;
  /* 4 */
  font-size: 244px;
  background: #fff;
}

.theme_white #timerBox{
  background: #fff;
  color: #000;
}
.theme_white input{
  color: #000;
}
.theme_black #timerBox{
  background: #000;
  color: #fff;
}
.theme_black input{
  color: #fff;
}
.theme_red #timerBox{
  background: #900;
  color: #fff;
}
.theme_red input{
  color: #fff;
}
.theme_blue #timerBox{
  background: #006DD9;
  color: #fff;
}
.theme_blue input{
  color: #fff;
}
.theme_pink #timerBox{
  background: #FF4DFF;
  color: #fff;
}
.theme_pink input{
  color: #fff;
}
.theme_green #timerBox{
  background: #00D936;
  color: #fff;
}
.theme_green input{
  color: #fff;
}
.theme_yellow #timerBox{
  background: #FFFF73;
  color: #222;
}
.theme_yellow input{
  color: #222;
}

.title{
  text-align: center;
  line-height: 1;
}
.title span{
  display: inline-block;
  padding: 15px;
  margin: 0 6px;
  line-height: 1;
  background: #111;
  color: #fff;
  font-size: 200px;
}
#timer {
  cursor: pointer;
}

#timerArea {}

#timerSetting {
  margin: 20px 0;
  text-align: center;
}

#timerSetting div {
  display: inline-block;
  border: 2px solid #666;
  color: #666;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  cursor: pointer;
  font-size: 34px;
}

#timerSetting .theme-box {
  display: block;
  width: auto;
  height: auto;
  border: none;
  cursor: default;
}
#timerSetting .theme-box div{
  cursor: pointer;
  width: auto;
  height: auto;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  padding: 4px 10px;
}

input {
  position: fixed;
  top: 8%;
  padding: 50px 0 30px;
  left: 0;
  font-weight: bold;
  right: 0;
  border: none;
  text-align: center;
  font-size: 52px;
  width: 100%;
  color: #000;
  background: none;
  outline: none;
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
}

#timerSetting div:hover {
  color: #000;
  border-color: #000;
}
.tap{
  position: fixed;
  z-index: 9;
  bottom: 40px;
  color: #333;
  font-size: 42px;
  left: 0;
  right: 0;
  text-align: center;
  animation: vertical 1s ease-in-out infinite alternate;
}

.tap i{
  font-size: 82px;
  display: block;
}
@keyframes horizontal {
    0% { transform:translateX( -3px); }
  100% { transform:translateX(  0px); }
}
@keyframes vertical {
    0% { transform:translateY(-10px); }
  100% { transform:translateY(  0px); }
}

.bg01 #timerBox{
  background-color: #f00;
  animation: bg-color 1s infinite;
  -webkit-animation: bg01 1s infinite;
}
.bg30 #timerBox{
  background-color: #FFFF00;
}
.bg10 #timerBox{
  background-color: #FF8000;
}

@-webkit-keyframes bg01 {
  0% { background-color: #f00; }
  50% { background-color: #333; }
  100% { background-color: #f00; }
}
@keyframes bg01 {
  0% { background-color: #f00; }
  50% { background-color: #333; }
  100% { background-color: #f00; }
}