@charset "UTF-8";
/*reset*/
a{
    color:inherit;
    text-decoration: inherit;
}
li{
    list-style: inherit;
    list-style-type: none;
}
/*reset end*/
body{/*重複すると思うので不要な場合はあとで削除してください*/
    color:#fff;
    font-family: 'Sawarabi Mincho', serif;
}

div.dummy{/*レイアウト確認用の空div　後ほど削除してください*/
    height:80vh;
}

.br-sp{
    display: none;
}
.bestrate-box{
    width:100%;
    height:280px;
    background-image: url(../img/re-back_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.bestrate-box.bottom{
    background-image: url(../img/re-back_02.jpg);
}
.bestrate-box .wrapper{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width:750px;
    height:100%;
    margin:auto;
    position: relative;
    z-index: 1;
}
.bestrate-box .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    padding-bottom:8px;
    letter-spacing: 1px;
    border-bottom:solid 1px #BD8953;
}
.bestrate-box.bottom .top{
    border-bottom:solid 1px #000;
}
.bestrate-box .top h2{
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    color:#BD8953;
}
.bestrate-box.bottom .top h2{
    color:#000;
}
.bestrate-box .top p{
    font-size:90%;
    letter-spacing: 0;
}
.bestrate-box .bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    margin-top:15px;
    padding-right:10px;
}
.bestrate-box img{
    position: absolute;
    left:100px;
    top:30px;
}

/*修正追加分*/
.form-best{
    width:100%;
    height:50px;
}
/*修正追加分ここまで*/

/*animation*/
.fadeUp_T{
    opacity: 0;
}
.fadeUp {
    animation-name: fadein-up;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadein-up {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.delay01 {
    animation-delay: 0.4s;
}
.delay02 {
    animation-delay: 0.6s;
}
.delay03 {
    animation-delay: 0.8s;
}
