.dl-button {
  background-image: linear-gradient(90deg, rgba(65, 164, 253, 1), rgb(14, 244, 255, 1));
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 20px;
  border-radius: 3px;
  border: 2px solid #007bff;
  height: 35px;
  font-weight: bold;
  transition: 0.3s;
  margin:20px auto;
  padding-bottom:5px;
  cursor: pointer;           /* マウスホバーで指マークにする */
}

.dl-button:hover {
  transform: scale(1.05);
}

.orange{
  background-image: linear-gradient(90deg, rgb(255, 42, 34), rgb(255, 175, 14));
    border: 2px solid #ff5900;
}
.small{
  width:50%;
}

.green{
  background-image: linear-gradient(90deg, rgb(0, 176, 38), rgb(105, 211, 97));
    border: 2px solid #0d8602;
}


.btn-red{
      background-color: red;
}

.pannel-red{
      background-color: rgb(197, 69, 69);
}

/* 1. 配置のための設定 */
.button-container {
  display: flex;
  justify-content: space-between; /* 中の要素を右に寄せる */
  padding: 0px;     /* 画面端との余白 */
  margin-right:20px;
}

/* 2. ボタンのデザイン */
.ask-button {
  display: inline-block;
  background-color: #fff;    /* 背景色：白 */
  color: #000;               /* 文字色：黒 */
  font-size: 14px;
  padding: 2px 5px;        /* 上下・左右の余白 */
  border-radius: 8px;       /* 角丸（高さを考慮して大きめに設定） */
  cursor: pointer;           /* マウスホバーで指マークにする */
  transition: 0.3s;          /* アニメーションを滑らかに */
  text-decoration: none;     /* aタグの場合のアンダーライン消し */
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  margin:10px auto;
  width: auto;
  height: auto;
  padding:10px;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
  background-color: #066eb3;
}

.button:hover {
  transform: scale(1.05);
}

@media screen and (max-width:700px) {

  .button {
  font-size: 18px;
  width:200px;
}

.dl-button{
    font-size: 16px;

}

}
