/* ------------------------------------------------------------------
    Base styles
-------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  font-family: Meiryo, Arial, Hiragino Kaku Gothic Pro, Osaka, Sans-Serif;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #333;
}

h1 {
  font-size: 2.0rem;
  word-wrap: break-word;
}

h2 {
  font-size: 1.8rem;
  word-wrap: break-word;
}

h3 {
  font-size: 1.6rem;
  word-wrap: break-word;
}

h4 {
  font-size: 1.4rem;
  word-wrap: break-word;
}

h5 {
  font-size: 1.2rem;
  word-wrap: break-word;
}

h6 {
  font-size: 1.0rem;
  word-wrap: break-word;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

img, a {
  border: none;
}

ul {
  list-style: none;
}

input[type='text'], 
input[type='password'], 
input[type="number"], 
input[type="tel"], 
textarea {
  padding: 15px 10px;
  color: #333333;
  font-size: 16px;
  border: solid 1px #cccccc;
  border-radius: 0;
  -webkit-appearance: none;
  box-shadow: rgba(0, 0, 0, 0.047) 1px 1px 2px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.047) 1px 1px 2px 2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.047) 1px 1px 2px 2px;
}
input[type='text']:hover,
input[type='password']:hover,
input[type='number']:hover,
input[type='tel']:hover,
textarea:hover {
  border: solid 1px skyblue;
  box-shadow: rgba(0, 0, 0, 0.047) 1px 1px 3px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.047) 1px 1px 3px 2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.047) 1px 1px 3px 2px;
}

select {
  width: 100%;
}

input[type='radio'] {
  width: 18px;
  height: 18px;
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  background: url(../../images/common/radio_btn.png) left center no-repeat;
  margin: auto 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  border: none;
}
input[type='radio']:checked:after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url(../../images/common/radio_checked_btn.png) left center no-repeat;
}

input[type='checkbox'] {
  width: 18px;
  height: 18px;
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  background: url(../../images/common/checkbox_btn.png) left center no-repeat;
  margin: auto 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  border: none;
  border-radius: 0;
}
input[type='checkbox']:checked:after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url(../../images/common/checkbox_checked_btn.png) left center no-repeat;
}

