body,
hr,
p,
ul,
ol,
h1,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

img {
    border: none;
    width: 100%;
    vertical-align: bottom;
}

hr {
    border-bottom: none;
}

a {
    color: #585858;
    text-decoration: none;
}

a:hover {
    /*opacity: 0.7;*/
}

/* ----------------- 共通 */

body {
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-text-size-adjust: 100%;
    font-weight: 300;
    color: #282828;
    position: relative;
}

@media screen and (max-width: 768px) {

    body {
        min-width: auto;
    }
}

.is-pc {
    display: block;
}

.is-sp {
    display: none;
}

@media screen and (max-width: 768px) {

    .is-sp {
        display: block;
    }

    .is-pc {
        display: none;
    }

}

.menu-head-box {
    display: none;
    position: relative;
}
.menu-head {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #D7001D;
}


/* drawer */
.drawer-btn,
.drawer-btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.drawer-btn {
    position: absolute;
    top: 13px;
    left: 7px;
    width: 36px;
    height: 25px;
}
.drawer-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}
.drawer-btn span:nth-of-type(1) {
    top: 0;
}
.drawer-btn span:nth-of-type(2) {
    top: 11px;
}
.drawer-btn span:nth-of-type(3) {
    bottom: 0;
}

.drawer-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}
.drawer-btn.active span:nth-of-type(2) {
    opacity: 0;
}
.drawer-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
}

.drawer-btn {
    display: none;
}

.drawer {
    display: none;
}

@media screen and (max-width:768px) {
    .menu-head-box {
        position: fixed;
        top: 3%;
        left: 3%;
        display: block;
        width: 36px;
        height: 25px;
        z-index: 121;
    }
    .drawer-btn span {
        position: absolute;
        display: block;
        border-radius: 3px;
        width: 100%;
        height: 4px;
        background-color: #000;
        transition-duration: 0.3s;
        transition-timing-function: ease-out;
    }
}

@media screen and (max-width:768px) {

    .drawer-btn {
        display: block;
    }

    .drawer {
        position: fixed;
        overflow-y: scroll;
        top: 0;
        left: 0;
        z-index: 120;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        padding: 8% 10% 25%;
        box-sizing: border-box;
        background-color: #000;
    }

    .drawer-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .drawer-list-item {
        width: 42%;
        opacity: 0;
        -webkit-transform: translate3d(0, -80px, 0);
        transform: translate3d(0, -80px, 0);
        -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
        transition: transform 0.5s, opacity 0.5s;
    }

    .drawer-list-item.active .drawer-list-item-btn {
        color: #A50001;
    }
    .drawer-list-item-btn {
        position: relative;
        font-family: 'Anton', sans-serif;
        display: block;
        padding: 7% 0;
        margin-bottom: 12%;
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        letter-spacing: .2em;
        line-height: 1;
        text-decoration: none;
        color: #FFF;
        transition: .3s;
    }
    .drawer-list-item-btn:before {
        width: 100%;
        height: 2px;
        display: block;
        content: '';
        background-color: #E50012;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: -1;
    }
    
    .drawer {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
        transition: opacity 0.5s, visibility 0s 0.5s;
    }
    .drawer.is-open {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
    }
    .drawer.is-open nav ul li {
        opacity: 0;
        -webkit-transform: translate3d(0, -80px, 0);
        transform: translate3d(0, -80px, 0);
        -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
        transition: transform 0.5s, opacity 0.5s;
    }
    .drawer.is-open nav ul:first-child li:first-child {
        -webkit-transition-delay: 0.05s;
        transition-delay: 0.05s;
    }
    .drawer.is-open nav ul:first-child li:nth-child(2) {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }
    .drawer.is-open nav ul:first-child li:nth-child(3) {
        -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }
    .drawer.is-open nav ul:first-child li:nth-child(4) {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    .drawer.is-open nav ul:first-child li:nth-child(5) {
        -webkit-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }
    .drawer.is-open nav ul li {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .drawer-list-item-txt {
        padding-left: 6px;
    }
}

@media screen and (max-width:500px) {
    .drawer {
        padding: 15% 10% 10%;
    }
    .drawer-list {
        justify-content: center;
    }
    .drawer-list-item {
        width: 90%;
    }
}



