@charset "UTF-8";
/*スタイル
------------------------------------------------------*/

@keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/******************************/
/*
リセット
/***********************/
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;
  font: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a,
a:hover {
  text-decoration: none;
}

/*a:hover,
.link-button:hover,
button:hover {
  animation-name: blink_animation;
  animation-duration: 0.6s;
}
@media screen and (max-width: 768px) {
  a:hover {
    animation: none;
  }
}
*/

a > img,
nav > img,
li > img,
div > img {
  width: 100%;
  height: auto;
  display:block;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

button {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
}

.clearfix:after {
  content: ".";
  height: 0;
}

body {
  /*position: absolute;*/
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow: visible;
}

body * {
  box-sizing: border-box;
}



div,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
li,
dl,
dt,
dd {
  position: relative;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

p,
div,
span {
  /*font-size: 1rem;*/
  margin: 0;
  padding: 0;
  line-height: 1.85;
}

header,footer,main,.wrapper{
  position:relative;
}

@media screen and (max-width: 768px) {
  p,
  span {
    /*font-size: 1em;*/
  }
}
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 2;
}

img,
a img {
  border: none;
  display: inline-block;
}

img,video{
  width: 100%;
  height: auto;
}

h1,
h2 {
  font-weight: bold;
}



.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}

