@font-face {
  font-family: "optima";
  src: url("../font/optima-cufonfonts/OPTIMA.TTF");
}

@font-face {
  font-family: "cooper_italic";
  src: url("../font/cooper/Cooper-Light-Italic.ttf");
}

@font-face {
  font-family: "hirakaku";
  src: url("../font/hirakaku/HiraKaku Pro W6.otf");
}

img {
  max-width: 100%;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  vertical-align: top;
}

a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
}

a:hover {
  opacity: .8;
  -webkit-transition: .2s;
  transition: .2s;
}

a:hover li {
  opacity: .8;
  -webkit-transition: .2s;
  transition: .2s;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

/* floating */
.floating{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  text-align: center;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 100%;
  z-index: 100;
}
.floating a {
  -webkit-box-shadow: 0 3px 5px rgb(255 255 255 / 30%);
  box-shadow: 0 3px 5px rgb(255 255 255 / 30%);
  width: 90%;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.5px;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  border-radius: 50px;
}
.floating a span{
  font-size: 11px;
  display: block;
  margin: 5px 0 0;
}
@media screen and (min-width: 768px) {
  .floating{
      width: 100%;
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  }
  .floating a{
      width: 49%;
      font-size: 18px;
      padding: 20px 0;
  }
  .floating a span{
    margin: 10px 0 0;
    font-size: 13px;
  }
}