@charset "UTF-8";

/* reset
---------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    font-size: 62.5%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
detail,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

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

/* border-box */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* Reset input */
input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* clearfix
---------------------------------------- */
.clear {
    position: relative;
    margin: 0 auto;
    zoom: 1;
}

.clear:before,
.clear:after {
    content: "";
    display: table;
}

.clear:after {
    clear: both;
}

/* bxslier reset
---------------------------------------- */
.bx-wrapper {
    margin: 0 auto;
}

.bx-wrapper .bx-viewport {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
}

/* cmn
---------------------------------------- */
.pc-block {
    display: block !important;
}

.sp-block {
    display: none !important;
}

.tab-block {
    display: none !important;
}

@media screen and (min-width: 481px) and (max-width: 769px) {

    .sp-block {
        display: none !important;
    }

    .tab-block {
        display: block !important;
    }
}

@media screen and (max-width: 480px) {
    .pc-block {
        display: none !important;
    }

    .sp-block {
        display: block !important;
    }

    .tab-block {
        display: none !important;
    }
}

/*.inner {
    position: relative;
    margin: 0 auto;
    zoom: 1;
}

.inner:before,
.inner:after {
    content: "";
    display: table;
}

.inner:after {
    clear: both;
}*/