@charset "utf-8";
/* CSS Document */

.button-010 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 95%;
    margin: 0 auto;
    padding: 1.2em 2em;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    background-color: #2597d0;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
}

.button-010::before {
    display: block;
    position: absolute;
    top: -50%;
    left: -30%;
    transform: rotate(30deg);
    width: 70px;
    height: 100px;
    content: '';
    background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
    animation: animation-button-010 2s infinite linear;
}

@keyframes animation-button-010 {
    17% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.button-010:hover {
    background-color: #1587c0;
}





/*領収書発行先電話番号
---------------------------------------------------------------------------*/

.box28 {
    position: relative;
    margin: 2em 0;
    padding: 65px 30px 7px;
    border: solid 3px #FFC107;
}
.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 19px;
    height: 45px;
    line-height: 45px;
    font-size: 25px;
    background: #FFC107;
    color: #ffffff;
    font-weight: bold;
}
.box28 p {
    margin: 10; 
    padding: 0;
}





/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
ハンバーガーメニューがコンテンツが少し重なってしまいますが、画面が狭いのでコンテンツが見える範囲を優先しました。
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {



