@font-face {
    font-family: Zenmarugothic;
    src: url('../fonts/ZenMaruGothic-Black.ttf') format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Zenmarugothic, Arial, sans-serif;
    font-weight: 900;
    margin: 0px;
}

h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px #0003;
}

.header__logo__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.logo {
    width: 60px;
    height: 60px;
}

.header__logo-title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
}

.header-logo__sub-title {
    font-size: 18px;
    color: #ee7944;
}

.header-logo__main-title {
    font-size: 36px;
    line-height: 36px;
    color: #ee7944;
}

.header__nav-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
}

.header__nav-text {
    font-size: 12px;
    line-height: 1.6;
    color: #40220f;
    transition: all .3s;
}
.header__nav-text:hover {
    color: #ee7944;
}

.button-2 {
    display: inline-block;
    margin-top: 0px;
    padding: 9px 15px;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}
input.button {
    -webkit-appearance: button;
}

.contact__button {
    border-radius: 12px;
    background-color: #40220f;
    transition: all .3s;
}
.contact__button:hover {
    background-color: #40220fcc;
}

.hamburger-menu__inner {
    display: none;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1280px) {
    .header__inner {
        padding-left: 60px;
        padding-right: 60px;
    }

    .header__nav-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .header__inner{
        display: flex;
        flex-direction: column;
        align-items:stretch;
    }

    .hamburger-menu__inner {
        display: none;
        display: block;
        width: 60px;
        height: 60px;
    }

    .lottie-animation {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    .header-logo__sub-title {
        font-size: 14px;
    }

    .header-logo__main-title {
        font-size: 28px;
        line-height: 28px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 479px) {
    .header__inner {
        padding: 10px;
    }

    .header__logo__inner {
        grid-column-gap: 2px;
        grid-row-gap: 2px;
    }

    .header-logo__sub-title {
        font-size: 12px;
        line-height: 12px;
    }

    .header-logo__main-title {
        font-size: 26px;
        line-height: 26px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }
}