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 {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
/*    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    font-family: YakuHanMP,'游明朝','Yu Mincho','游明朝体','YuMincho','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HiraMinProN-W3','HGS明朝E','ＭＳ Ｐ明朝','MS PMincho',serif;
    -webkit-text-size-adjust: 100%;
    font-weight: 300;
    color: #282828;
    position: relative;
}

html, body {
    min-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
}

.modal-c {
    overflow-y: hidden;
}

.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;
}


/* drawer */
.drawer-btn,
.drawer-btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.drawer-btn {
    position: absolute;
    top: 36%;
    right: 4%;
    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(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}

.drawer-btn {
    display: none;
}

.drawer {
    display: none;
}

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




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

    .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%;
    }

    .drawer-list-item.active .drawer-list-item-btn {
        color: #A50001;
    }
    .drawer-list-item-btn {
        position: relative;
        display: block;
        padding: 7% 0;
        margin-bottom: 12%;
        font-size: 2vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: .2em;
        line-height: 1;
        text-decoration: none;
        color: #FFF;
        transition: .3s;
    }
    .drawer-list-item-btn:before {
        display: inline-block;
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top: 2px solid #A50001;
        border-left: 2px solid #A50001;
    }
    .drawer-list-item-btn:after {
        display: inline-block;
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        top: 0px;
        right: 0px;
        border-top: 2px solid #A50001;
        border-right: 2px solid #A50001;
    }
    .drawer-list-item-btn span:before {
        display: inline-block;
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom: 2px solid #A50001;
        border-left: 2px solid #A50001;
    }
    .drawer-list-item-btn span:after {
        display: inline-block;
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        bottom: 0px;
        right: 0px;
        border-bottom: 2px solid #A50001;
        border-right: 2px solid #A50001;
    }
    .drawer-list-item-btn:hover {
        cursor: pointer;
        text-decoration: none;
        transition: transform .3s;
        transform-origin: center;
        transform: scale(0.9, 0.9);
    }
    .drawer-list-item-btn-icon {
        display: flex;
    }
    .drawer-list-item-btn:hover .drawer-icon {
        fill: #A50001;
    }

    .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%;
    }
    .drawer-list-item-btn {
        font-size: 3.8vw;
    }
}




.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,1);
    z-index: 1000;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1100;
    overflow: auto;
}

.modal-btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: #fff100;
    position: absolute;
    z-index: 1010;
    top: 0;
    right: 0;
}

.modal-btn:before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #000;
    left: 5px;
    top: 13px;
    transform: rotate(45deg);
}

.modal-btn:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #000;
    left: 5px;
    top: 13px;
    transform: rotate(-45deg);
}

.modal-wrap {
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow: auto;
    -webkit-overflow-scrolling:touch;
    z-index: 1000;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

}
