/* 追加CSSをここに入力してください */
.btn-2 {
    background-color: limegreen; /* ボタン背景色 */
    color: #fff; /* ボタン文字色 */
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    border-radius: 15px;
    max-width: 90%;
    margin: 0.5em auto;
    padding: 0;
    text-align: center;
    line-height: 2.5;
    transition: all .2s ease;
    position: relative;
	  border-bottom: solid 4px green;
  border-radius: 9px;
}



.btn-2:hover {
    box-shadow: none;
    transform: translateY(2px);
    opacity: 0.8;
}

.btn-2 a {
    text-decoration: none !important;
    color: #fff !important;
    display: block;
    margin: 0;
    padding: 0.5em;
    padding-right: 2em;
}

.btn-2 > img { float: left; }
.btn-2::after{ content: ''; clear: left; }


.btn-3 {
    background-color: orange; /* ボタン背景色 */
    color: #fff; /* ボタン文字色 */
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
     font-weight: bold;
    border-radius: 15px;
    max-width: 90%;
    margin: 0.5em auto;
    padding: 0;
    text-align: center;
    line-height: 2.5;
    transition: all .2s ease;
    position: relative;
	  border-bottom: solid 4px red;
  border-radius: 9px;
}




.btn-3:hover {
    box-shadow: none;
    transform: translateY(2px);
    opacity: 0.8;
}

.btn-3 a {
    text-decoration: none !important;
    color: #fff !important;
    display: block;
    margin: 0;
    padding: 0.5em;
    padding-right: 2em;
}

.btn-3 > img { float: left; }
.btn-3::after{ content: ''; clear: left; }
