/* sp */
.web-chat {
  margin: 0 auto;
  border-radius: 30px;
  background-color: #1e79b1;
  width: 200px;
  height: 100px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}

.web-chat a {
  color: #fff;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5%;
  text-align: center;
}

.line-app {
  margin: 0 auto;
  border-radius: 30px;
  background-color: #06c755;
  width: 200px;
  height: 100px;
  font-weight: bold;
  font-size: 16px;
}

.line-app a {
  color: #fff;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5%;
  text-align: center;
}

/* タブレットサイズ以上 768 */
@media (min-width: 768px) {
  .web-chat {
    margin: 0 auto;
    border-radius: 30px;
    background-color: #1e79b1;
    width: 300px;
    height: 150px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
  }

  .web-chat:hover {
    opacity: 0.8;
  }

  .web-chat a {
    color: #fff;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5%;
    text-align: center;
  }

  .web-chat a:hover {
    text-decoration: none;
  }

  .line-app {
    margin: 0 auto;
    border-radius: 30px;
    background-color: #06c755;
    width: 300px;
    height: 150px;
    font-weight: bold;
    font-size: 18px;
  }

  .line-app:hover {
    opacity: 0.8;
  }

  .line-app a {
    color: #fff;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5%;
    text-align: center;
  }

  .line-app a:hover {
    text-decoration: none;
  }
}
