/* RESET */
* {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
}
ul,
li {
    list-style: none;
}
.br-mobile {
    display: none;
}
@media screen and (max-width: 500px) {
    .br-mobile {
        display: block;
    }
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}

/* HEADER */
.blaze-header {
    background-color: #000;
    padding: 25px 0;
    z-index: 9999;
    position: relative;
}
.blaze-header .container {
    display: flex;
    justify-content: space-between;
}
.blaze-header .container .logo {
    width: 150px;
}
.blaze-header .container nav ul {
    display: flex;
    justify-content: space-around;
}
.blaze-header .container nav ul li {
    padding: 0 20px;
}
.blaze-header .container nav ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
.blaze-header .container nav ul li a::after {
    content: " ";
    background-color: #fff;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -10px;
}
.blaze-header .container nav ul li a:hover::after {
    animation: link_hover 0.5s forwards;
}
.blaze-header .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #000;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: -3px 0px 4px 0px #262626;
    opacity: 0;
    transition:
        right 0.3s ease,
        opacity 0.3s ease;
    display: none;
}
.mobile-menu.is-active {
    display: block;
}
.mobile-menu.is-open {
    right: 0;
    opacity: 1;
}
.blaze-header .mobile-menu .close-menu {
    color: #fff;
    font-size: 25px;
    margin-bottom: 30px;
}
.blaze-header .mobile-menu ul li a {
    text-decoration: none;
    color: #fff;
    padding: 15px 0;
    display: block;
    text-align: center;
    border-bottom: 1px solid #fff;
}
.blaze-header .mobile-menu-icon {
    color: #fff;
    font-size: 25px;
    display: none;
}
@keyframes link_hover {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .blaze-header .container nav {
        display: none;
    }
    .blaze-header .mobile-menu-icon {
        display: block;
    }
}

/* FOOTER */
.blaze-footer {
    background-color: #000;
}
.blaze-footer section ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 30px;
}
.blaze-footer section ul li {
    width: 25%;
    box-sizing: border-box;
    padding: 15px 0;
}
.blaze-footer a {
    color: #fff;
    text-decoration: none;
}
.blaze-footer .products {
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}
.blaze-footer .products ul li a:hover,
.blaze-footer .social ul li a:hover {
    opacity: 0.8;
}
.blaze-footer .products ul li a img {
    width: 110px;
    filter: grayscale(100%);
}
.blaze-footer .links {
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}
.blaze-footer .links a {
    position: relative;
}
.blaze-footer .links a::after {
    content: " ";
    background-color: #fff;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -10px;
}
.blaze-footer .links a:hover::after {
    animation: link_hover 0.5s forwards;
}
.blaze-footer .contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
}
.blaze-footer .contact .info {
    display: block;
}
.blaze-footer .contact .info div {
    margin-bottom: 10px;
}
.blaze-footer .contact .info i {
    margin-right: 7px;
}
.blaze-footer .contact .info a {
    font-size: 16px;
    font-weight: 200;
}
.blaze-footer .contact .info i,
.blaze-footer .contact .info a {
    color: #fff;
}
.blaze-footer .contact small {
    color: #fff;
    font-size: 13px;
}
.blaze-footer .social {
    background-color: #000;
    padding: 10px 0;
    border-top: 1px solid #ccc;
}
.blaze-footer .social .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blaze-footer .social ul {
    flex-wrap: nowrap;
    padding-right: 0;
}
.blaze-footer .social ul li {
    width: unset;
    padding: 0 10px;
}
.blaze-footer .social ul li:last-of-type {
    padding-right: 0;
}
.blaze-footer .social ul li a {
    font-size: 25px;
    /* color: #000; */
}
.blaze-footer .social strong {
    font-size: 17px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
@media screen and (max-width: 1000px) {
    .blaze-footer section ul li {
        width: 50%;
        text-align: center;
    }
    .blaze-footer .contact {
        display: block;
        text-align: center;
    }
}
@media screen and (max-width: 500px) {
    .blaze-footer section ul li {
        width: 100%;
    }
    .blaze-footer .contact {
        padding: 30px 10px;
        margin-bottom: 0;
    }
    .blaze-footer .contact .info a {
        font-size: 12px;
    }
    .blaze-footer .contact .info div:nth-of-type(2) a {
        font-size: 16px;
    }
    .blaze-footer .contact small {
        font-size: 10px;
    }
    .blaze-footer .social ul li a {
        font-size: 18px;
    }
}
