@charset "utf-8";
/*----------------------------------------------------
  リセット
----------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box
}
* {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/*----------------------------------------------------
  初期設定
----------------------------------------------------*/
@-ms-viewport {
  width: device-width;
}
html {
  overflow-y: scroll;
  font-size: 62.5%;
  color: #222;
}
body {
  background: #fff;
  line-height: 1.6;
}
body,
input,
textarea,
select {
  font-family: "YuGothic", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
img {
  vertical-align: bottom;
  line-height: 1 !important;
}
blockquote,
q {
  border-left: 5px solid #b6b6b6;
  quotes: none;
  padding-left: 15px;
  margin: 1em 0;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
input,
textarea {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
ol,
ul {
  padding-left: 2em;
}
ol {
  list-style: decimal outside none;
}
ul {
  list-style: disc outside none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
}
hr {
  margin: 2em auto;
  border: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ffffff;
}

/*----------------------------------------------------
	インライン要素
----------------------------------------------------*/
em {
  font-style: italic;
}
mark {
  background: none repeat scroll 0 0 #FFFF00;
}
strong {
  font-weight: bold;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -.25em;
}
sup {
  top: -.5em;
}

/*----------------------------------------------------
	表組
----------------------------------------------------*/
table th,
table td {
  padding: 0.6em;
  vertical-align: top;
}
table th {
  white-space: nowrap;
}
table th,
table tfoot td {
  font-weight: bold;
  text-align: left;
}

/*----------------------------------------------------
	フォーム
----------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  border: 0;
  padding: 4px 10px;
  border: solid 1px #ccc;
  margin: 3px 0;
  font-size: 1.6rem;
  border-radius: 3px;
  vertical-align: middle;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 3px 0;
  vertical-align: middle;
}
input:focus[type="text"],
input:focus[type="email"],
input:focus[type="tel"],
input:focus[type="date"],
textarea:focus,
select:focus {
  border: solid 1px #EEA34A;
  background: #FFe;
}