@charset "utf-8";

/* ======================================================
 * 404_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Components
 * Media Queries
====================================================== */

/* ------------------------------------------------------
 * Components
------------------------------------------------------ */

/* ----- link-button-notfound ----- */
.link-button-notfound {
  display: flex;
  justify-content: center;
}
.link-button-notfound > li > a {
  display: inline-block;
  position: relative;
  min-width: 170px;
  max-width: 100%;
  padding: 15px 45px 15px 30px;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  background-color: #0096e0;
  text-decoration: none;
  -webkit-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}
.link-button-notfound > li > a:hover {
  opacity: 0.7;
}
.link-button-notfound > li > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 13px;
  margin-top: -5px;
  background: url(/common/img/com_link_ic03.png) no-repeat;
  background-size: 100% auto;
  -webkit-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}