

/* ポップアップ */
.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 9;
}
 
.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
 
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
 
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
 
.modal-close {
  font-weight: 600;
  position: absolute;
  top: -27px;
  right: 0;
  font-size: 16px;
  color: #fff;
  background: #e9520e;
  padding: 6px 11px;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  border: 1px solid #e9520e;
}
 
.modal-content {
  /* background-image: url(../images/background.png);
  background-size: cover;
  padding: 30px; */
  height: 510px;
}

.btn-area {
  text-align: center;
}

.btn-area img {
  width: 100%;
  /* margin-bottom: 10px; */
}

.gray-bg .txt {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #B99257;
  font-weight: bold;
  font-size: 18px;
}

.button-dl {
  color: #fff;
  padding: 9px;
  background-color: #e9520e;
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 22px;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  width: 100%;
  margin-top: -1px;
}

.button-dl a{
  text-decoration: none;
  color: #fff;
}

.button-dl::after {
  content: "";
  display: inline-block;
  margin-left: 10px; /* 矢印とテキストの間にスペースを追加 */
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}






@media screen and (max-width: 767px) {

  .modal-content {
    height: 345px;
  }

  .btn-area img {
    width: 100%;
    margin-bottom: 0;
  }

  .button-dl {
    font-size: 18px;
  }
}