  /*********************************************
      Who's Who 1.2
       by Masayuki "Yuki" Kawagishi
       file name: style.css
  *********************************************/

#Header {
  margin-left: 2%; margin-right: 2%;
  border-style: none;
}

a {
  color: purple;
}
a:visited {
  color: purple;
}
a:hover {
  background-color: purple;
  color: white;
}
#Content {
  margin-left: 2%; margin-right: 2%;
  border-style: solid;
  font-family: "Helvetica", "游ゴシック", sans-serif;
  background-color: beige;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::-ms-clear {
  visibility: :hidden;
}

input.hankaku {
  ime-mode: disabled;
}

input.zenkaku {
  ime-mode: active;
}

table, th, td {
  margin-left: 2%; margin-right: 2%;
  font-style: italic;
  padding-left: 3px;
  padding-right: 1em;
}

td.Latin_name {
  font-weight: bold;
  color:#00c;
}

tr:nth-child(odd) {
  background: #d9d9d9;
}
tr:nth-child(even) {
  background: #d9d900;
}

#Inner_Content {
  margin-top: 100px; height: 400px;
  text-align: center;
}

.Button {
  width: 200px; height: 50px;
  background-color: skyblue;
  color: purple;
  text-align: center;
}


.Username { 
  margin-top: -30px;
  height: 30px;
  text-align: right;
  font-family: monospace;
}

.check_complete {

}

.upload_picture {

}

.Input_Value {
  padding-left: 2%; padding-right: 2%;
}
.Inner_Input_Value {
  border-style: solid;
  margin-top: 20px;
  padding-left: 1%; padding-right: 1%;
}

h1 {
  color: purple;
  margin-left: 14pt;
  font-size: 14pt; font-weight: normal;
  font-family: sans-serif;
}


#alert {
  width: 250px;
  margin: auto;
  margin-top: 40vh;
  padding: 30px 20px;
  display: none;
  text-align: center;
  border: 1px solid #aaa;
  box-shadow: 2px 2px 4px #888;
}

svg {
  width: 100px;
  display: block;
  margin: 40px auto 0;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  &.circle {
    -webkit-animation: dash .9s ease-in-out;
    animation: dash .9s ease-in-out;
  }
  &.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash .9s .35s ease-in-out forwards;
    animation: dash .9s .35s ease-in-out forwards;
  }
  &.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check .9s .35s ease-in-out forwards;
  }
}

.subtitle {
  font-weight: 600;
  color: rgba(255,0,0,0.8);
}

.Buttons {
  text-align: right;
  position: fixed;
  height: 30px;
  right: 50px;
  bottom: 50px;
  transition: 1s;
  opacity: 0.8;
  background-color: #f7a151;
}

.footer {
  margin-right: 2%;
  text-align: right;
  font-family: "Times", "Times New Roman", serif;
}

@media screen and (max-width:480px) {
  * {
    float: none;
    position: static;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
  #Content {
    margin-left: 0; margin-right: 0;
    padding-left: 1%; padding-right: 1%;
  }  
   
}