CSS

.btn_style01 {
 max-width: 100%;
 width: 300px;
}

.btn_style01 a {
 display: block;
 padding: 10px 0;
 text-align: center;
 color:  var(--main-color);
 text-decoration: none;
 font-weight: normal;
 font-size: 14px;
 font-size: 1.4rem;
 border: 2px solid var(--main-color);
 position: relative;
}
.btn_style01 a:hover { 
 color: #fff;
 background: var(--main-color);
 border: 2px solid var(--main-color);
}

.btn_style01 a:after {
 content: '';
 width: 6px;
 height: 6px;
 border-top: solid 1px var(--main-color);
 border-right: solid 1px var(--main-color);
 transform: rotate(45deg);
 position: absolute;
 top: 50%;
 right: 15px;
 margin: -3px 0 0 0;
}

.btn_style01 a:hover::after {
 border-top: solid 1px #fff;
 border-right: solid 1px #fff;
}
一覧に戻る