/*五島 丸紅トップページ選択ボタン*/

.button0001 a {
    background: #c0c0c0; /*クリック前の背景色*/
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button0001 a:hover {
    background: #dc1421;/*クリック後の背景の色*/
    color: #FFF;
}
.button0001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button0001 a:hover:after {
    border-color: #FFF;
}



