@charset "utf-8";

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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  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-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: none;
}

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

html {
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic,
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    "Rollerscript", sans-serif;
}

a {
  color: #222;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: top;
}

/* フォーム周り */
input,
select {
  vertical-align: middle;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

input[type="text"]:focus {
  outline: none;
}

input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-sizing: border-box;
  max-width: 100%;
  color: inherit;
  font-family: inherit;
  outline: none;
}

input[type="text"].isError,
input[type="number"].isError,
input[type="tel"].isError,
input[type="email"].isError,
input[type="password"].isError,
select.isError,
textarea.isError {
  border: 1px solid #e2afaf;
  background: #fcf7f7;
}

::-webkit-input-placeholder {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}
:-moz-placeholder {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}

/* IE11のselect矢印を非表示にする。 */
select::-ms-expand {
  display: none;
}

/* IEでのクリアボタンを非表示にする */
input::-ms-clear {
  visibility: hidden;
}

/* IE11のplaceholderテキスト色を設定する。 */
:-ms-input-placeholder {
  color: #9ea3a5;
}
::-webkit-input-placeholder {
  color: #9ea3a5;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}

textarea {
  resize: none;
}

input:-internal-autofill-selected {
  background-color: #fff;
}
