@charset "utf-8";

.btn_type01 a:hover {
    border: 1px solid #330000;
    background-color: #330000;
    color: white;
    transition: all .6s;
}


.btn_type01 a{
    font-size: 15px;
    font-weight: bold;
    padding: 6px 20px;
    padding-right: 34px;
    color: #330000;
    background-color: white;
    border: 1px solid #330000;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    transition: .3s;
    text-decoration: none !important;
    border-radius: 6px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.btn_type01 a span{
    font-size: 0.8em;
}
.btn_type01_arrow {
	position:relative;
}
.btn_type01_arrow a::after {
	content: '';
    width: 10px;
    height: 10px;
    border-top: solid 2px #330000;
    border-right: solid 2px #330000;
    position: absolute;
    top: 8px;
    margin-left: 10px;
    transform: rotate(135deg);
}

.btn_type01_arrow a:hover::after {
    border-top: solid 2px white;
    border-right: solid 2px white;
    transition: all .6s;
}

.btn_type02 a {
    font-size: 18px;
    padding: 6px 20px;
    padding-right: 54px;
    color: white;
    background-color: #ff6e12;
    border: 1px solid #ff6e12;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    transition: .3s;
    text-decoration: none !important;
    border-radius: 6px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.btn_type02_arrow a::after {
	content: '';
    width: 10px;
    height: 10px;
    border-top: solid 2px white;
    border-right: solid 2px white;
    position: absolute;
    margin-top: 4px;
    margin-left: 16px;
    transform: rotate(135deg);
}
