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

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

}

/* footer */

.footer {
    padding: 5% 0 5% 0;
}

.footer-snsnavi {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    text-align: center;
}

.footer-snsnavi-item {
    padding: 0 8px;
    line-height: 0;
    box-sizing: border-box;
}

.footer-snsnavi-item img {
    width: 100%;
    max-width: 168px;
}

.footer-corpnavi {
    display: flex;
    justify-content: center;
    margin: 0 0 0.3em 0;
    flex-wrap: wrap;
}

.footer-corpnavi-item {
    padding: 0 8px;
    line-height: 1em;
    box-sizing: border-box;
}

/*
.footer-corpnavi-item:before {
    content: ">";
    font-size: 14px;
}
*/

.footer-corpnavi-item .is-btn {
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-copyright {
    font-size: 11px;
    text-align: center;
    letter-spacing: 1px;
    margin: 1em 0;
}

.footer-logo {
    width: 80px;
    margin: 0 auto;
    line-height: 0;
}

.footer-logo img {
    width: 100%;
}

/* バリエーション */
/* 黒 */
.footer.is-black {
    background-color: #000;
}

.footer.is-black .footer-corpnavi-item:before {
    color: #fff;
}

.footer.is-black .footer-corpnavi-item .is-btn {
    color: #fff;
}

.footer.is-black .footer-copyright {
    color: #fff;
}
/* 白 */
/*
.footer.is-white {
    background-color: #fff;
}

.footer.is-white .footer-corpnavi-item:before {
    color: #000;
}

.footer.is-white .footer-corpnavi-item .is-btn {
    color: #000;
}

.footer.is-white .footer-copyright {
    color: #000;
}
*/

.footer.white{
    padding-top:80px;
}

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

    .footer-snsnavi-item {
        width: 50%;
        margin: 0 0 10px 0;
    }

    .footer-corpnavi-item {
        width: 50%;
    }

}


.drawer-btn {
    display: none;
}

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

    .drawer-btn {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 30px;
        height: 24px;
        z-index: 10;
        cursor: pointer;
    }

    .drawer-btn span {
        position: absolute;
        display: block;
        border-radius: 2px;
        width: 100%;
        height: 2px;
        background-color: #fff;

      transition-duration: 0.3s;
      transition-timing-function: ease-out;
    }

    .drawer-btn span:first-child {
        top: 0;
    }

    .drawer-btn span:nth-child(2) {
        top: 50%;
        margin: -1px 0 0 0;
    }

    .drawer-btn span:last-child {
        bottom: 0;
    }

    .drawer-btn:hover span:first-child {
        top: 2px;
    }

    .drawer-btn:hover span:last-child {
        bottom: 2px;
    }

}


/*

drawer

*/

.drawer {
    opacity: 0;
    position: fixed;
    visibility: hidden;
}

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

    .drawer {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background-color: #000;
        transition-duration: 0.3s;
        transition-timing-function: ease-out;
    }

    .drawer.is-open {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .drawer-nav {
        margin: 50px 0 0 0;
        padding: 0;
    }

    .drawer-nav-item {
        margin: 0 0 5% 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    .drawer-nav-btn {
        color: #fff;
        font-family: 'Josefin Sans', sans-serif;
        font-size: 18px;
    }

    .drawer-btn {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 30px;
        height: 24px;
        z-index: 10;
        cursor: pointer;
    }

    .drawer-btn span {
        position: absolute;
        display: block;
        border-radius: 2px;
        width: 100%;
        height: 2px;
        background-color: #fff;

        transition-duration: 0.3s;
        transition-timing-function: ease-out;
    }

    .drawer-btn span:first-child {
        top: 2px;
    }

    .drawer-btn span:nth-child(2) {
        top: 50%;
        margin: -1px 0 0 0;
    }

    .drawer-btn span:last-child {
        bottom: 2px;
    }

    .is-open .drawer-btn span:first-child {
        top: 11px;
      transform: rotate(-45deg);
    }

    .is-open .drawer-btn span:nth-child(2) {
        opacity: 0;
        top: 0;
        margin: 0;
    }

    .is-open .drawer-btn span:last-child {
        bottom: 11px;
        transform: rotate(-135deg);
    }

}

.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: 90%;
    height: 90%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1100;
}

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

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

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

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

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

}
