/*======================================*/
/*リセット*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
ul,
ol,
li,
h1,
h2,
h3,
p,
span,
a,
div {
    -webkit-font-smoothing: antialiased;
	margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    text-rendering: auto;
    position: relative;
}

li {
    list-style: none;
}

img {
    vertical-align: bottom;
    margin: 0;
}

a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

a:link,
a:visited,
a:hover,
a:active, a:focus {
    color: #222222;
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: 0;
}

.screen-reader-text{
    display:none;
}

/*
    Safari対応
*/
select, input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
}
