/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 *
 * ブラウザ間のデフォルトスタイルの差異を吸収するためのリセットCSS。
 * 各要素の margin/padding/border 等を一旦ゼロにし、以降のスタイル指定を
 * ブラウザのデフォルトスタイルに依存せず統一的に行えるようにする。
 */

/* 主要な要素のマージン・パディング・ボーダー等を初期化 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    box-sizing: border-box;
    min-width: 0;
}
body {
    line-height:1;
}
/* HTML5要素はデフォルトで display:inline のブラウザがあるため明示的にブロック化 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* リスト要素 */
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
/* テーブル */
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
ul{
  list-style: none;
}

/* フォーカス時の既定アウトラインを非表示（独自のフォーカススタイルを使う想定） */
*,*:hover,*:focus{
    outline: none !important;
}

/* フォーム要素 */
input, select, textarea {
vertical-align: middle;
border: none;
width: 100%;
background: #f5f5f5;
padding: 0.9375rem 1.25rem;
border-radius: 1.5625rem;
font-size: 1rem;
}
select{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -0.07812rem;
}

@media screen and (max-width: 40.625rem) {
    input, select, textarea {
    font-size: 0.9375rem;
    }
}


/* プレースホルダー文字色（ベンダープレフィックスごとに個別指定が必要） */
::-webkit-input-placeholder{
  color: #CECECE;
  font-weight: 400;
}
::-moz-placeholder {
  color: #CECECE;
  font-weight: 400;
}
:-ms-input-placeholder {
  color: #CECECE;
  font-weight: 400;
}
:-moz-placeholder {
  color: #CECECE;
  font-weight: 400;
}
