.SVG70Percent {
    width: 70%;
    height: auto;
}



.header-content {
    display: flex;
    justify-content: space-between;
}

.right {
    text-align: right;
    font-family: 'RanobePop', sans-serif;
    font-size: 40px;
}


@font-face {
    font-family: "RanobePop";
    src: url("OTF/RanobePop.otf") format("opentype");
}

.RanobeFont {
    font-family: 'RanobePop', sans-serif;
    font-size: 23px;
}











.NormalButton a {
    background: #f7f7f700;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 20px 35px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.NormalButton a:hover {
    background: #e7e7e7;

}














.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

