/**************************************

header.css

***************************************/

.header{
    background-color: #fff;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
}
.header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.header__logo{
    width: 100%;
    max-width: 200px;
}

.header__button{
    display: flex;
    align-items: center;
}

.header__button a{
    background-color: #f4901e;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 20px 25px;
    display: inline-block;
    box-shadow: 2px 2px 4px 2px rgba(0,0,0, 0.2);
    border-radius: 33px;

}
/*  ↓ メディアスクリーンの記述*/

@media screen and (max-width: 780px) {
    .header{
        height: 60px;
    }
    .header__inner{
        max-width: 89.33%;
    }
    .header__logo{
        max-width: 100px;
    }
    .header__button a{
        font-size: 12px;
        padding: 10px 12px;
        border-radius: 16px;
    }
}