@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
}
/* Document */
/* ============================================ */
html {
	font-size: 62.5%;
	color: #444444;
	background: #FFF;
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	-webkit-tap-highlight-color: transparent; /* 3*/
	counter-reset: number 0;
}

/* Sections */
/* ============================================ */
body {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.7;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
@media screen and (max-width: 390px) {
    body {
        font-size: 1.4rem;
    }
}

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: 0 0
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
    display: block
}


/* Headings */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
  	font-weight: inherit;
}

/* Lists (enumeration) */
/* ============================================ */

ul, ol {
	margin: 0;
  	padding: 0;
  	list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
a {
	cursor: pointer;
	vertical-align: baseline;
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}

a,button,small,span,time {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit
}

abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

b, strong {
  font-weight: bolder;
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
    display: block
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

img, picture {
    max-width: 100%
}

picture {
    display: block
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    padding: 0
}

a img {
    border: none
}


/* Forms */
/* ============================================ */
button,input,select,textarea {
    margin: 0;
    padding: 0;
    background: 0 0;
    border: none;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    cursor: pointer
}

textarea {
    resize: vertical;
    overflow: auto
}
[type=file] {
    line-height: 1!important
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
	cursor: default;
}

:-moz-focusring {
	outline: auto;
}
select::-ms-expand {
    display: none;
}

select::-moz-focusring {
    color: transparent;
}
select:disabled {
	opacity: inherit;
}
option {
	padding: 0;
}

fieldset {
	margin: 0;
  	padding: 0;
  	min-width: 0;
}

legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px; /* 1 */
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
[type="number"] {
  -moz-appearance: textfield;
}
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
table {
	border-color: inherit;
  	border-collapse: collapse;
	border-spacing: 0;
}

caption {
	text-align: left;
}

td,	 th {
	vertical-align: top;
	padding: 0;
}

th {
	text-align: left;
	font-weight: bold;
}

