CSS

.two_btn01 {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 30px 40px;
 margin: 0 0 40px;
}

.two_btn01:last-child {
 margin: 0;
}

.two_btn01 > li {
 width: calc((100% - 40px) / 2);
 max-width: 300px;
}

.two_btn01 > li 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;
}

.two_btn01 > li a:hover { 
 color: #fff;
 background: var(--main-color);
 border: 2px solid var(--main-color);
}

.two_btn01 > li 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;
}

.two_btn01 > li a:hover::after {
 border-top: solid 1px #fff;
 border-right: solid 1px #fff;
}

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

.two_btn01 > li {
 width: 100%;
}

}
一覧に戻る