.fixed_link-wrap {
  border: 1px solid #006eb8;
  border-radius: 10px;
  padding: 20px 15px;
  max-width: 600px;
  margin: 0 auto;
  font-family: Noto Sans JP !important;
  margin-top: 30px;
}

.fixed_link-inner {
  display: flex;
  justify-content: center;
}

.fixed-img {
  max-width: 250px;
  margin-right: 20px;
}

.fixed-img img {
  width: 100%;
}

.fixed-btn-inner a {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px 5px !important;
    width: 250px !important;
    height: 50px;
    font-weight: normal !important;
    background: #006eb8;
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 18px;
    font-family: Noto Sans JP !important;
}

.fixed-btn-inner a::after {
  content: "➜";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    color: #006eb8;
    border-radius: 50%;
    font-size: 14px;
}

.fixed-btn-inner a:hover {
  opacity: .7;
}

.fixed-btn-inner p {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: bold;
}

.fixed-btn-inner .point {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 8px;
  color: gray;
  font-weight: normal;
}

@media screen and (max-width:640px){
  .fixed_link-inner {
    display: block
  }

  .fixed-btn-inner p {
    font-size: 17px;
  }

  .fixed-img {
    margin-right: 0;
    margin: 0 auto 10px;
  }

  .fixed-btn-inner a {
    margin: 0 auto;
  }

  .fixed-btn-inner .point {
    font-size: 15px;
  }
}