body {
  font-family: "Avenir Next";
  margin: 0px 0;
  padding: 0 15px;
  background-color: #e99469;
}
html, body {
  height:100%;
}
a{
  text-decoration: none;
}
li {
  list-style: none;
}


h1,h2{
  color: #e99469;
}

h1::selection{
  background-color: #db6b5c;
}
h2::selection{
  background-color: #db6b5c;
}
#strong::selection{
  background-color: #ecd189;
}
.more_see_main{
  text-align: center;
  padding-bottom: 20px;
}
.more_see_main a{
  font-size: 13px;
  color: #e99469;
}
.more_see{
  padding: 1em 9em;
  background-color: #fff;
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  outline: none;
  overflow: hidden;
}
.more_see::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: #ee0979;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #f2b476, #db6b5c);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #f2b476, #db6b5c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  transform: skewX(-25deg);
}
.more_see:hover::before {
  animation: shine 0.7s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
