@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
*/

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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*--------------------- form reset -------------------- */
/*----- ios用 start -----*/
input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;

  -webkit-appearance: none;
}
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  cursor: pointer;

  -webkit-appearance: button;
  appearance: button;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
  outline: none;
  border: none;
  background: transparent;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
input[type="submit"] {
  padding: 0;
  outline: none;
  border: none;
  background: transparent;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
/*------ ios用 end ------*/

/*------ テキスト start -----*/
.text-test {
  padding: 0.4em 0.8em;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-size: 1em;
  font-family: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.text-test:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
}
/*------- テキスト end ------*/

/*------ テキストエリア start -----*/
.textarea-text {
  padding: 0.4em 0.8em;
  width: 100%;
  height: 100px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-size: 1em;
  font-family: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.textarea-text:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
}
/*------- テキストエリア end ------*/

/*------ ラジオボタン start -----*/
.radio-test {
  display: none;
}

.radio-test + span {
  position: relative;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
}

.radio-test + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-test + span::after {
  position: absolute;
  top: 50%;
  left: 4px;
  padding: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  content: "";
  opacity: 0;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-test:checked + span::after {
  opacity: 1;
}
/*------- ラジオボタン end ------*/

/*------ チェックボックス start -----*/
.check-test {
  display: none;
}

.check-test + span {
  position: relative;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
}

.check-test + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.check-test + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.2em;
  width: 1em;
  height: 0.6em;
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  opacity: 0;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.check-test:checked + span::after {
  opacity: 1;
}
/*------- チェックボックス end ------*/

/*------ セレクトボックス start -----*/
.select-test {
  padding: 0.4em 0.8em;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background: transparent
    url(https://haniwaman.com/wp-content/uploads/2018/12/form-css-arrow.png)
    no-repeat center right 8px/16px 16px;
  color: inherit;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.select-test::-ms-expand {
  display: none;
}

.select-test:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
}
/*------- セレクトボックス end ------*/

/*------ セレクトボックス start -----*/
.submit-test {
  display: inline-block;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;

  -webkit-appearance: none;
}

.submit-test:hover,
.submit-test:focus {
  outline: none;
}

.submit-test::-moz-foucus-inner {
  padding: 0;
  border: none;
}
/*------- セレクトボックス end ------*/

/*------ ボタン start -----*/
.submit-test {
  display: inline-block;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;

  -webkit-appearance: none;
}

.submit-test:hover,
.submit-test:focus {
  outline: none;
}

.submit-test::-moz-foucus-inner {
  padding: 0;
  border: none;
}
/*------- ボタン end ------*/

/*------ ファイル start -----*/
#file-test {
  display: none;
}

#file-test-label {
  padding: 0.4em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  cursor: pointer;
}

#file-test-name {
  display: none;
  padding: 0.4em 0;
  width: 100%;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-size: 1em;
  font-family: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
/*------- ファイル end ------*/
/*---------------------- form end --------------------- */
