/* Reset style */
@charset "utf-8";

.toggle-menu-button {
    display: none;
}

@media (max-width: 800px) {
    .site-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .site-menu li {
        margin-top: 20px;
        font-size: 20px;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        height: 50px;
        z-index: 10;
    }
    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }
    .header-logo {
        width: 100%;
    }
    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #000;
        background-color: #fff;
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
        height: 100vh;
        transition: .5s ease-out;
    }
    .toggle-menu-button {
        display: block;
        width: 44px;
        height: 40px;
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        transition: opacity .3s ease-out;
        background-image: url(../img/menu_FILL0_wght400_GRAD0_opsz48.svg);
    }
    .menu-icon {
        background-image: url(../img/menu_FILL0_wght400_GRAD0_opsz48.svg);
    }
    .close-icon {
        background-image: url(../img/close_black_24dp.svg);
    }
    .header-site-menu.is-show {
        display: block;
    }

}

*,
::before
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    font-family: sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1;
    background-color: #fff;
}
img {
    max-width: 100%;
}

.header {
    color: #000;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: block;
    width: 170px;
    height: px;
}
.site-menu ul {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.site-menu li {
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.site-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer {
    color: #000;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 3px solid #3da1e8;
}
.footer-logo {
    display: block;
    width: 235px;
    margin-top: 90px;
}
.footer-tel {
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}
.copyright {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}