@charset "UTF-8";
/* reset.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

html {
    font-size: 16px;
    line-height: 1.5;
    font-family: sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    position: relative;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    appearance: none;
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th, td {
    padding: 0;
    text-align: left;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

address, cite, code, em, strong, th {
    font-style: normal;
    font-weight: normal;
}

label span {
	text-align: left;
}

@media(min-width: 769px) {
	.show-mobile { display: none !important; }
}

@media(max-width: 768px) {
	.show-pc { display: none; }
}