@charset "UTF-8";

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background-color:transparent;
}
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  height: 100%;
  font-size: 1.0rem;
  background-repeat: repeat;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
    position:   relative;
}

nav ul {
    list-style:none;
}
ul {
  list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}


input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  background : none;
  font-family: inherit;
  cursor: pointer;
}
input[type="text"] {
  width: calc(100% - 10px);
  padding: 0 5px;
  border-bottom: 1px solid #999;
  line-height: 1.8rem;
  position: absolute;
  bottom: 0;
  left: 5px;
  font-size: 1.8rem;
  line-height: 30px;
}
input::placeholder {
  color: #e3e3e3;
}

/* IE */
input:-ms-input-placeholder {
  color: #3e3e3e3e;
}

/* Edge */
input::-ms-input-placeholder {
  color: #3e3e3e3e;
}
@media screen and (max-width: 480px) {
  input[type="text"] {
    font-size: 1.6rem;
  }
}
input[type=radio], input[type=checkbox] {
  display: none;
}

.radio {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 35px;
  margin-right: 55px;
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
@media screen and (max-width: 480px) {
  .radio {
    font-size: 1.6rem;
    margin-right: 0;
  }
}
.checkbox {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 35px;
  margin-right: 20px;
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
@media screen and (max-width: 480px) {
  .checkbox {
    font-size: 1.6rem;
  }
}
.radio:hover, .checkbox:hover {
  background-color: #e2edd7;
}
.radio:hover:after, .checkbox:hover:after {
  border-color: #53b300;
}
.radio:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #9e9e9e;
  border-radius: 5px;
  -webkit-transition: border-color 0.2s linear;
  -moz-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}
.radio:before {
  content: '';
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #53b300;
  opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.checkbox:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 6px;
  height: 12px;
  margin-top: -3px;
  border-right: 3px solid #53b300;
  border-bottom: 3px solid #53b300;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.checkbox:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: block;
  width: 13px;
  height: 13px;
  border: 1px solid #9e9e9e;
  border-radius: 2px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3) inset;
  -webkit-transition: border-color 0.2s linear;
  -moz-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}

textarea {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  border: 1px solid #999;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  textarea {
    min-height: 160px;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 100%;
  padding: 0 18px 0 10px;
  background: url(../img/common/select_arrow.png) right 5px top 50% no-repeat;
  background-size: 12px, 100%;
  border: 1px solid #999;
  font-size:  1.8rem;
}
@media screen and (max-width: 480px) {
  select {
    font-size: 1.6rem;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  span.sp {
    display: inline !important;
  }
}
