@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

html{
  font-size: 16px;
}


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;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  color: #4c4c4c;
  font-family: 'Noto sans JP', 'YuGothic', "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  vertical-align: middle;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.5;
}

button {
  cursor: pointer;
}

p,
a {
  color: #333333;
  line-height: 1.8;
}

p,
a,
h1,
h2,
h3,
h4{
  letter-spacing: 0.1em;
  @media screen and (max-width: 500px) {
    letter-spacing: 0.03em;
  }
}

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

.sp-only,
.sm-only,
.xs-only {
  display: none;
}
@media screen and (max-width: 860px) {
  .sp-only {
    display: block;
  }
  .sm-only{
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .xs-only{
    display: block;
  }
  .sm-only{
    display: none;
  }
}

.container {
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  .container {
    padding: 0 30px;
  }
}

.en{
  text-transform: uppercase;
}
.en2{
  text-transform: capitalize;
}

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.delay-02s {
  transition-delay: 0.2s;
}

.delay-06s {
  transition-delay: 0.4s;
}

.delay-10s {
  transition-delay: 0.6s;
}

p{
  @media screen and (max-width: 860px) {
    font-size: 14px;
  }
}