/*防火・防災セイフティマーク等頒布のご案内*/
.onebtno span {
    float: right;
}

.onebtn span a {
    border-radius: 9px;
    color: #fff;
    display: block;
    height: 30px;
    width: 300px;
    letter-spacing: 0.1em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    transform: rotate(0.05deg);
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    padding-top: 14px;
}

.onebtn span a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #325bae;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: -1;
    transition: opacity 0.2s;
    border-radius: 9px;
}

.onebtn span a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    border: 2px solid #325bae;
    border-radius: 9px;
}

.onebtn span a:hover {
    background: #fff;
    color: #325bae;
}

.onebtn span a:hover:before {
    opacity: 0;
}