@charset "UTF-8";
/* Reset
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

th {
  font-weight: 500;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  text-align: left;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

img,
fieldset {
  border: 0;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

li {
  list-style-type: none;
}

input[type="submit"], button, label, select {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* link
------------------------------------------------------------*/
a {
  color: #333;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a, button {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a:hover, button:hover {
  opacity: 0.8;
}

/* Fonts
------------------------------------------------------------*/
@font-face {
  font-family: 'Staatliches';
  font-style: normal;
  font-weight: 400;
  src: local("Staatliches"), local("Staatliches-Regular"), url("../fonts/staatliches-v3-latin-regular.woff2") format("woff2"), url("../fonts/staatliches-v3-latin-regular.woff") format("woff");
}

@font-face {
  font-family: 'Fjalla One';
  font-style: normal;
  font-weight: 400;
  src: local("Fjalla One"), local("FjallaOne-Regular"), url("../fonts/fjalla-one-v7-latin-regular.woff2") format("woff2"), url("../fonts/fjalla-one-v7-latin-regular.woff") format("woff");
}

html {
  font-size: 62.5%;
}

/* 10px base */
body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: BlinkMacSystemFont, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #333;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}

input, button, textarea, select {
  line-height: 1.5;
  color: #333;
  font-family: BlinkMacSystemFont, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

/* form
------------------------------------------------------------*/
textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
  padding: 9px 5px;
  border-radius: 0;
  border: solid 1px #003f9d;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 600px) {
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="tel"],
  select {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.error,
input[type="text"].error,
input[type="password"].error,
input[type="tel"].error,
input[type="email"].error,
select.error {
  background-color: #fff2f2;
  border: solid 2px #E33E41;
}

textarea {
  vertical-align: middle;
}

/* radio
-------------*/
input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 17px;
  cursor: pointer;
}

input[type="radio"] + span::before,
input[type="radio"] + span::after {
  content: '';
  top: 50%;
  position: absolute;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

input[type="radio"] + span::before {
  width: 15px;
  height: 15px;
  left: 0;
  background: #ffffff;
  border: 1px solid #003f9d;
  top: calc(3px + 0.22em);
  left: 0;
}

input[type="radio"] + span:hover::before {
  background: #FEFEFE;
}

input[type="radio"] + span::after {
  opacity: 0;
  left: 3px;
  width: 7px;
  height: 7px;
  background-color: #003f9d;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  top: calc(7px + 0.22em);
  left: 4px;
}

input[type="radio"]:checked + span::before {
  background: #fff;
  border: 1px solid #003f9d;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media only screen and (max-width: 600px) {
  input[type="radio"] + span {
    padding-left: 15px;
  }
  input[type="radio"] + span::before {
    width: 11px;
    height: 11px;
  }
  input[type="radio"] + span::after {
    top: calc(6px + 0.22em);
    left: 3px;
    width: 5px;
    height: 5px;
  }
}
/* checkbox
-------------*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 17px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media only screen and (max-width: 600px) {
  input[type="checkbox"] + span {
    padding-left: 15px;
  }
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after {
  position: absolute;
  content: '';
}

input[type="checkbox"] + span::before {
  top: calc(3px + 0.22em);
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #003f9d;
}

@media only screen and (max-width: 600px) {
  input[type="checkbox"] + span::before {
    width: 11px;
    height: 11px;
  }
}

input[type="checkbox"] + span::after {
  opacity: 0;
  top: calc(7px + 0.22em);
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #003f9d;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

@media only screen and (max-width: 600px) {
  input[type="checkbox"] + span::after {
    top: calc(6px + 0.22em);
    left: 3px;
    width: 5px;
    height: 5px;
  }
}

input[type="checkbox"] + span:hover::before {
  background: #fff;
}

input[type="checkbox"]:checked + span::before {
  background: #fff;
  border: 1px solid #003f9d;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
