* {
    line-height: 1.5;
    letter-spacing: 0.1em;
}


.header {
    display: flex;
    justify-content: space-around;
    padding: 30px 10px;
    align-items: center;
    
}

.headerLeftBox {
    width: 50%;
    padding-left: 10px;
}

.headerRightBox {
    width: 50%;
    padding-right: 10px;
    
}
.header img {
    width: 100%;
    max-width: 300px;
    display: block;
}

.hamMenu input,
.hamMenu label {
    display: none;
}

.header ul {
    display: flex;
    padding: 0;
    justify-content: space-between;
}
.header li {
    list-style: none;
    font-size: 14px;
    margin: 0 auto;
    
}

@media only screen and (max-width: 768px) {
    .header {
        padding: 28px 5px 40px;
    }
    .header img {
        max-width: 150px;
    }

    .hamMenu input {
        display: block;
    }

    .hamMenu label {
        display: flex;
    }

    .menuBtn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 15px;
    }

    .menuBtn span,
    .menuBtn span::before,
    .menuBtn span::after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #000;
        position: absolute;
    }

    .menuBtn span::before {
        bottom: 8px;
    }
    .menuBtn span::after {
        top: 8px;
    }

    #menuBtnCheck:checked ~ .menuBtn span {
        background-color: rgba(255, 255, 255, 0);
    }

    #menuBtnCheck:checked ~ .menuBtn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menuBtnCheck:checked ~ .menuBtn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menuBtnCheck {
        display: none;
    }

    .menuContent {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #fff;
        transition: all 0.5s;/*アニメーション設定*/
    }

    #menuBtnCheck:checked ~ .menuContent {
        left: 0;/*メニューを画面内へ*/
    }

    .menuContent ul {
        padding: 70px 10px 0;
        flex-direction: column;
    }

    .menuContent ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#000;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }

    .menuContent ul li a::after {
        font-family: 'Font Awesome 5 Free';
        content: '\f054';
        font-weight: 600;
        padding-left: 24px;
    }
}