@charset "UTF-8";

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
del,
em,
img,
small,
strong,
sub,
i,
dl,
dt,
ol,
ul,
li,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
dt,
dd,
article,
aside,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video {
    background: transparent;
    border: 0;
    letter-spacing: 0.5px;
    margin: 0;
    outline: 0;
    padding: 0;
}

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

/* font*/
p,
h1,
h2,
ul,
ol,
body {
    margin: 0px;
    padding: 0px;
    color: #000;
}


p {
    line-height: 2;
    font-size: 1.6rem;
}

a {
    outline: none;
    text-decoration: none;
    transition-property: all;
    transition: 0.2s linear;
    color: black;
}

a:hover {
    opacity: 0.7;
}

ul,
ol {
    list-style-type: none
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

main {
    overflow: hidden;
}

@media screen and (min-width: 2500px) {
    html {
        font-size: 82.5%;
    }
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 51%;
    }
}

body {
    width: 100%;
}

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

h1,
h2,
h3,
h4 {
    margin-bottom: 0;
    margin-top: 0;
}

@media screen and (max-width: 980px) {
    body {
        font-size: 1.4rem;
    }
}

/*i-phone横用処理*/
@media screen and (max-width:700px) {
    body {
        -webkit-text-size-adjust: 100%;
    }

    .content {
        max-width: 95%
    }
}

/*only-pc only-nav*/
@media screen and (min-width:641px) {
    .only-mov {
        display: none
    }
}

@media screen and (max-width:640px) {
    .only-pc {
        display: none
    }

    .only-mov {
        display: block
    }
}