/* reset ====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'ヒラギノ角ゴProW3', 'HiraginoKakuGothicPro', 'メイリオ', Meiryo, Verdana, 'ＭＳＰゴシック', sans-serif;
    padding: 0;
    font-size: 90%;
    line-height: 180%;
    color: #333;
}

body,
x:-moz-any-link {
    line-height: 160%;
}

html>

/**/
body,
x:-moz-any-link,
x:default {
    line-height: 160%;
}

*htmlbody {
    line-height: 140%;
}

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,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

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

input,
select {
    vertical-align: middle;
}

em {
    font-style: normal;
}

a {
    text-decoration: none;
}

::before,
::after {
    box-sizing: inherit;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
}

img {
    width: 100%;
    display: block;
}

address {
    font-style: normal;
    font-size: 90%;
}

/* css animation ====================================================== */
/*fadein*/
.fadein {
    opacity: 0.1;
    transform: translate(0, 50px);
    transition: all 700ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/*cssanimation*/
.fuwa {
    -webkit-animation: fuwa1.5sinfinitelinearalternate;
    animation: fuwa1.5sinfinitelinearalternate;
}

@-webkit-keyframesfuwa {
    0% {
        -webkit-transform: translate(0, 0)rotate(-5deg);
    }

    50% {
        -webkit-transform: translate(0, -5px)rotate(0deg);
    }

    100% {
        -webkit-transform: translate(0, 0)rotate(5deg);
    }
}

@keyframesfuwa {
    0% {
        transform: translate(0, 0)rotate(-5deg);
    }

    50% {
        transform: translate(0, -5px)rotate(0deg);
    }

    100% {
        transform: translate(0, 0)rotate(5deg);
    }
}

.buru {
    -webkit-animation: buru0.3sinfinitelinearalternate;
    animation: buru0.3sinfinitelinearalternate;
}

@-webkit-keyframesburu {
    0% {
        -webkit-transform: translate(0, 0)rotate(-3deg);
    }

    50% {
        -webkit-transform: translate(0, -1px)rotate(0deg);
    }

    100% {
        -webkit-transform: translate(0, 0)rotate(3deg);
    }
}

@keyframesburu {
    0% {
        transform: translate(0, 0)rotate(-3deg);
    }

    50% {
        transform: translate(0, -1px)rotate(0deg);
    }

    100% {
        transform: translate(0, 0)rotate(3deg);
    }
}

/* common ====================================================== */
.mv {}

.mvimg {
    width: 100%;
}

#foot a,
a.but,
section,
header,
footer {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: lighter;
}

.img-wrap {
    opacity: 0;
}

.img-animation {
    animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1)forwards;
    overflow: hidden;
    position: relative;
}

.img-animation:before {
    animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img-opacity {
    100% {
        opacity: 1;
    }
}

@keyframes img-animation {
    100% {
        transform: translateX(100%);
    }
}

::selection {
    background: #000;
    color: #fff;
}

::-moz-selection {
    background: #000;
    color: #fff;
}

.bkgrb {
    background-image: linear-gradient(90deg, rgba(84, 106, 139, 1), rgba(84, 106, 139, 0.6));
    color: #fff;
}

.bkgrb a {
    color: #fff;
}

.bkb {
    background: #eceff3;
}