@charset "UTF-8";
[type="submit"],
[type="button"] {
  display: inline-block;
  vertical-align: middle;
  padding: 0.3em 1.2em;
  margin: 0;
  background-image: none;
  background-color: #9e9e9e;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 1em;
  text-align: center;
  -webkit-appearance: none;
}

:not(:disabled)[type="submit"],
:not(:disabled)[type="button"] {
  cursor: pointer;
}

:hover[type="submit"],
:hover[type="button"] {
  outline: none;
}

[type="submit"]::-moz-foucus-inner,
[type="button"]::-moz-foucus-inner {
  padding: 0;
  border: none;
}

[type="text"],
[type="search"],
[type="tel"],
[type="url"],
[type="email"],
[type="password"],
[type="number"],
[type="date"],
[type="month"],
[type="week"],
[type="time"],
[type="datetime-local"] {
  width: auto;
  padding: 0.4em 0.8em;
  border-radius: 0;
  background-image: none;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  font-family: inherit;
  font-size: 0.95em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  width: auto;
  height: 100px;
  padding: 0.4em 0.8em;
  border-radius: 0;
  background-image: none;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  font-family: inherit;
  font-size: 0.95em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

[type="radio"] {
  display: none;
}

[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

[type="radio"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}

[type="radio"] + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #616161;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  border: 1px solid #9e9e9e;
  box-shadow: 0 0 0 0.1em #fff inset;
  display: block;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

:checked[type="radio"] + span::before {
  border: 1px solid #9e9e9e;
}

:checked[type="radio"] + span::after {
  opacity: 1;
}

[type="checkbox"] {
  display: none;
}

[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

[type="checkbox"] + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #616161;
  border-bottom: 3px solid #616161;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

:checked[type="checkbox"] + span::before {
  border: 1px solid #9e9e9e;
}

:checked[type="checkbox"] + span::after {
  opacity: 1;
}

select {
  width: auto;
  padding: 0.4em 2.4em 0.4em 0.8em;
  border-radius: 0;
  background-color: #fff;
  background-image: url(../img/arrow-select.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center right 0.2em;
  border: 1px solid #bdbdbd;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

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

select[multiple] {
  height: 100px;
  padding: 0;
  background-image: none;
}

select[multiple] option {
  padding: 0.4em 1.2em 0.4em 0.4em;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadein {
  opacity: 0.1;
  transform: translate(0, 30px);
  transition: all 0.5s ease 0s;
}

.fadein.m-anim {
  opacity: 1;
  transform: translate(0, 0);
}

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

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #424242;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  margin: 0;
  padding: 0;
}

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

video {
  max-width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #bdbdbd;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #bdbdbd;
}

th {
  background: #eee;
  color: #424242;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

input,
textarea,
select {
  max-width: 100%;
}

[type="text"].m-full,
[type="search"].m-full,
[type="tel"].m-full,
[type="url"].m-full,
[type="email"].m-full,
[type="password"].m-full,
[type="number"].m-full,
[type="date"].m-full,
[type="month"].m-full,
[type="week"].m-full,
[type="time"].m-full,
[type="datetime-local"].m-full {
  width: 100%;
}

[data-target] {
  cursor: pointer;
}
