@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.8;
}
body, input, textarea, select {
  font-family: "YuGothic",Meiryo,"メイリオ","Hiragino Kaku Gothic ProN",sans-serif;
  /* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 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: middle;
  line-height: 1.5;
}
table th {
  white-space:nowrap;
}
table th, table tfoot td {
  font-weight: bold;
  text-align: left;
}


/*----------------------------------------------------
	フォーム
----------------------------------------------------*/
input[type="text"],
textarea,
select {
  border:0;
  padding:4px;
  border:solid 1px #ccc;
  margin:3px 0 ;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.3);
  -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.3);
  vertical-align:middle;
}
input[type="radio"],
input[type="checkbox"] {
  margin:3px 0 ;
  vertical-align:middle;
}
input:focus[type="text"],
textarea:focus,
select:focus {
  border:solid 1px #EEA34A;
  background:#FFe;
}
