@charset "UTF-8";
/* ================================================

                  reset.css

=================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-size: 1.6rem;
  letter-spacing: 0;
  vertical-align: baseline;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #222;
  line-height: 1.5;
  box-sizing: border-box;
  transition: all .3s;
}
p {
  margin: 0!important;
}
html {
  position: relative;
  font-size: 62.5%;
  min-height: 100vh;
  scroll-behavior: smooth;
}
body, main {
  position: relative;
  background-color: #fff;
}
body {
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
main {
  padding-top: 48px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup,
  menu, nav, section {
  display: block;
}
dl, dt, dd, ol, ul {
  list-style: none;
  padding-left: 0!important;
  margin-bottom: 0!important;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: break-all;
}
a {
  text-decoration: none!important;
  color: #fe4d00!important;
  cursor: pointer;
  transition: all .3s;
}
/*a:hover {
  opacity: .6;
  color: unset;
}*/
img {
  object-fit: contain;
  max-width: 100%;
}
button {
  border: none;
  background-color: inherit;
}
header {
  z-index: 999;
}
input, select ,label {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #222;
  border-radius: 0px;
  background-color: #fff;
  color: #222;
}
label {
  border: none;
}

input[type="file"] {
  border: none;
}

/*
input[type="file"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
*/
input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #222;
  vertical-align: -3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="checkbox"]:before {
  transition: all .3s;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  content: '';
  top: calc(50% - 8px);
  left: -3px;
  transform: rotate(45deg) translateY(-50%);
  width: 10px;
  height: 20px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
}
input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
@media ( max-width : 991px) {
  h1, h2, h3, h4, h5, h6, p, dd, dt, li, label, input, a, span, th, td, button,label {
    font-size: 1.6rem;
  }
  main {
    padding-top: 60px;
  }
}
@media ( max-width : 768px) {
  h1, h2, h3, h4, h5, h6, p, dd, dt, li, label, input, a, span, th, td, button,label {
    font-size: 1.4rem;
  }
}