@charset "utf-8";
/* CSS Document */
:root {
  --button-text-color: #FFFFFF;
  --button-bg-color: #C00836;
  --button-bg-color-on: #F85C5C;}
.btn-wrapper {
  display:block;
  margin: 0 auto;
  padding: 4em 0 1em;
  text-align: center;
}
a.link-box{
  position: relative;
  font-size: 1.3em;
  font-weight: bold;
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  padding: 0.8em 3em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.08em;
  border-radius: 0.5em;
  box-shadow: 3px 3px 0px 0px rgba(100,0,0,1.00);
}
a.link-box:hover {
  text-decoration: none;
  background: var(--button-bg-color-on);
}
a.link-box span.ya{
  z-index: 8000;
  display: inline-block;
  padding-left: 1em;
}
a.link-box span.ya::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0 0.4em 0.8em;
  border-color: transparent transparent transparent #FFF;
  position: absolute;
  top: 43%;
  margin-top: -6px;
}
.image_btn-wrapper div.bt{
  display:block;
  text-align: center;
  width: var(--w-basesize);
  margin: 2em auto 2em;
}
.image_btn-wrapper div.bt img {
    max-width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.image_btn-wrapper div.bt:hover img {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.last_btn-wrapper {
  display:block;
  text-align: center;
  width: var(--w-basesize);
  margin: 0 auto 4em;
}
.btn-gos {
  padding: 4em 0 0 0;
}
.btn-wrapper img {
    max-width: 80%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.btn-wrapper:hover img {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.btn-gos img {
    max-width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.btn-gos:hover img {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.btn-list {
padding: 2em 0 2em 0;
}
.btn-list img{
    max-width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.btn-list:hover img{
  opacity: 0.6;
  transition-duration: 0.3s;
}
