@charset "UTF-8";
/*
 Share Style <
-------------------------------------------------
*/
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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
div,
p,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table {
  padding: 0;
  margin: 0;
}
html {
  font-size: 100%;
}
body {
  background: #f2f2f2;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  overflow: hidden;
}

#wrapper::after {
  content: "";
  display: inline-block;
  padding: 50px 0;
  width: 100%;
  height: 150px;
  background-image: url("../images/line.png");
  background-repeat: repeat-x;
  background-position: center;
}
#wrapper img {
  max-width: 100%;
  width: auto;
  height: auto;
}
#wrapper a,
#wrapper a:link {
  color: #e67500;
}
#wrapper a:hover {
  text-decoration: none;
}

#wrapper h1 {
  text-align: center;
  max-width: 600px;
  width: 85%;
  margin: 0 auto;
  padding: 1px 0;
}

/* ふわふわアニメーション */
@keyframes fluffy {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.fluffy {
  animation: fluffy 3s ease-in-out infinite;
}

@media screen and (max-width: 750px) {
  #wrapper {
    padding: 10% 0;
  }
  #wrapper::after {
    content: "";
    display: inline-block;
    padding: 0;
    width: 100%;
    height: 100px;
    background-image: url("../images/line.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: 50%;
  }
}
