/*(report・budget用ボタン）*/
.btn-here { 
    display:inline-block;
    width:75px;
    height: auto;
    margin:2px 2px;
    padding: 3px 0;
    border:solid 1px #7ecf7e;
    border-radius:5px;
    background-color:#fff;
    line-height: 1;   /* 天地位置 */
    letter-spacing: 2px;  /* 字間 */
    text-decoration:none;
    font-weight:bold;
    text-align:center;
    color:#1fb1a9;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.btn-here:hover {
  margin: 0px 2px;  /* paddで太らせる分margを減らす */
  padding: 5px 0;
  border: 1px solid #ffb3b3 ;
  background-color: #fff8fa ;
  color: #ff0000 ;
  box-shadow: 0 3px 5px rgba(0,0,0,0.12);
}

/*(third用ボタン・緑）*/
.btn-3rd { 
    display:flex;
    justify-content: center;
    align-items: center;
    width:230px;
    height: 50px;
    margin: 0px 0px;
    padding: 0px 0px;
    border-radius:5px;
    background-color:#1fb1a9;
    line-height: 1; 
    letter-spacing: 1.6px;
    text-decoration:none;
    font-weight:bold;   
    color:#ffffff;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.btn-3rd:hover {
  transform: scaleY(1.06); /* 縦だけ少し拡大 */
  box-shadow: 0 3px 7px rgba(0,0,0,0.15);
}
