@charset "utf-8";


/* オリジナルの追加要素
--------------------------------------*/
/*LINEバナー*/
.banner {
  position: fixed;
  margin: 0;
  z-index: 98;
  bottom: 0;
  right: 0;
}

.banner a {
  text-decoration: none;
}

.banner-icon {
  color: #f8f8f8;
  font-size: 40px;
}

.banner-back {
  width: 200px;
  background-color: #fff;
}

.banner-copy {
  font-size: 18px;
  position: relative;
}

.banner-copy::after {
  font-family: 'Font Awesome 6 Free';
  font-size: 20px;
  content: '\f054';
  color: #006EB0;
  position: absolute;
  margin-top: 11px;
  top: 0;
  right: 18px;
}

.banner-bottom {
  padding: 0;
  line-height: 1.6;
  border: 1px solid #000;
}

.banner-body {
  width: 200px;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

.banner-body:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.banner-close {
  font-weight: bold;
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 99999;
  padding: 0px 7px;
  border: none;
  color: #fff;
  background-color: #000;
  border-radius: 12px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .banner {
    position: fixed;
    margin: 0;
    z-index: 98;
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .banner a {
    text-decoration: none;
  }

  .banner-icon {
    color: #f8f8f8;
    font-size: 40px;
  }

  .banner-back {
    background-color: #fff;
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }

  .banner-copy {
    font-size: 18px;
    position: relative;
  }

  .banner-copy::after {
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    content: '\f054';
    color: #006EB0;
    position: absolute;
    margin-top: 11px;
    margin-left: 12px;
    top: initial;
    right: initial;
  }

  .banner-bottom {
    padding: 0;
    border: 1px solid #000;
  }

  .banner-body {
    width: 100%;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  }

  .banner-body:hover {
    transition: opacity 0.3s ease;
    opacity: 0.7;
  }

  .banner-close {
    font-weight: bold;
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 99999;
    padding: 0px 7px;
    border: none;
    color: #fff;
    background-color: #000;
    border-radius: 12px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    padding-bottom: 2px;
  }

}