@charset "utf-8";
/* .preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
} */
body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, p, b, s, small, menu, mark {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
  -webkit-text-size-adjust:none;
  word-wrap: break-word;
  background: none;
  color: #333;
  line-height: 1.4;
  font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, Osaka, 'MS PGothic', sans-serif;
  box-sizing: border-box;
}
span, dfn {
  margin: 0;
  padding: 0;
  font-style: normal;
  box-sizing: border-box;
  /* letter-spacing: 0.5px; */
}

input, button, textarea, select {

}
button:focus,
textarea:focus,
select:focus,
input:focus,
a:focus {
  outline: 0;
}
input {
  line-height: 1;
}
input::-ms-reveal,
input::-ms-clear {
  visibility: hidden;
}
select {
  color: inherit;
}
select::-ms-expand {
  display: none;
}
textarea {
  resize: none;
}
::-webkit-input-placeholder {
  color: #ccc;
  padding-top: 1px;
}
::-moz-placeholder {
  color: #ccc;
  padding-top: 1px;
}
:-ms-input-placeholder {
  color: #ccc;
}
img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  border: none;
  vertical-align: bottom;
}
li {
  list-style-type: none;
  list-style-position: inside;
}
/* table {
  border: none;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}
th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  margin: 0;
  padding: 0;
} */
main, section, article, aside, hgroup, header, footer, nav, figure, figcaption, summary, time, address {
  display: block;
  font-style: normal;
  margin: 0;
  padding: 0;
}
span.error {
  color: red;
  margin-top: 5px;
  display: block;
  font-size: 14px;
}
button, a {
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  box-sizing: border-box;
  cursor: pointer;
  color: #333;
  text-decoration: none;
}
input,
textarea {
  border: solid 1px #cacaca;
  /* width: 100%; */
  /* padding: 0 10px; */
  box-sizing: border-box;
  background: #fff;
  font-size: 14px;
}
input {
  line-height: 34px;
  height: 15px;
}
textarea {
  padding: 3px 3px;
  box-sizing: border-box;
  height: 144px;
}
.select select {
  width: 135%;
  line-height: 38px;
  padding: 0 40px 0 15px;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 15px;
}
.select {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border: solid 1px #cacaca;
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  position: relative;
}
.select:before {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  margin-top: -9px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* オートフィルで背景色が勝手に変わるのを消す */
input:-webkit-autofill
{
  box-shadow: 0 0 0px 1000px white inset;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-transition: color 9999s;
  transition: color 9999s;
}
/*---------------------------------

  チェックボックス
  ラジオボタン

---------------------------------*/
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  border: none;
  background: none;
  padding: 0;
  line-height: 0;
}
.checkbox .js-error::before,
.checkbox .js-error::after {
  display: none;
}
.checkbox .js-error {
  padding: 0;
  text-align: center;
}
.checkbox label,
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  padding: 0 0 0 30px;
  line-height: 26px;
  letter-spacing: 0.5px;
}
.checkbox label::before,
.checkbox label::after,
.radio label::before,
.radio label::after {
  position: absolute;
  content: '';
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.checkbox label::before,
.radio label::before {
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -13px;
  background: #fff;
  border: solid 1px #cacaca;
  box-sizing: border-box;
}
.checkbox .uncheck+label::before,
.radio .uncheck+label::before {
  background: #fff;
  border: solid 1px #cacaca;
}
.checkbox label::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 15px;
  height: 6px;
  margin-top: -8px;
  border-left: solid 3px #fff;
  border-bottom: solid 3px #fff;
  -webkit-transform: rotate(-45deg) scale(1);
  -moz-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  -o-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
.checkbox input[type="checkbox"]:checked+label::before {
  border: solid 1px #03a864;
  background: #03a864;
}
.checkbox input[type="checkbox"]:checked+label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  -moz-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  -o-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
.checkbox label::before {
  border-radius: 2px;
}
.radio label::before {
  border-radius: 50%;
  cursor: pointer;
}
.radio label::after {
  top: 50%;
  left: 7px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-radius: 50%;
  background: #cacaca;
}
.radio input[type="radio"]:checked+label::after {
  background: #fff;
}
.radio input[type="radio"]:checked+label::before {
  border: solid 1px #03a864;
  background: #03a864;
}