@charset "UTF-8";

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

html {
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.9;
    background-color: #f8f8f8;
    color: #333;
    -webkit-text-size-adjust: 100%;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    width
    /***/
    : auto;
    outline: none;
    border-style: none;
    vertical-align: bottom;
}

p {
    padding: 0px;
}

a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/* link
**********************************/
a:link {
    color: #333;
    text-decoration: none;
}

a:visited {
    color: #333;
    text-decoration: none;
}

a:active {
    color: #333;
    text-decoration: underline;
}

a:hover {
    color: #333;
    text-decoration: underline;
}


/* ========================================================
/* main設定
=========================================================*/

.main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* ========================================================
/* footer設定
=========================================================*/

footer {
    background-color: #000;
    width: 100%;
}

/* footer-menu
**********************************/
.footer-inner {
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}


.footer-logo {
    display: block;
    width: 180px;
}


/* copyright設定
**********************************/
.copyright {
    font-size: 12px;
    text-align: center;
    color: #fff;
    padding: 0 0 60px 0;
}

.copyright-sp {
    font-size: 12px;
    text-align: center;
    color: #fff;
    padding: 0 0 60px 0;
}

.copyright-sp img {
    padding: 0 0 30px 0;
}



/* ========================================================
/* PCSPメニュー表示切替
=========================================================*/

.copyright-sp {
    display: none;
}

@media screen and (max-width: 750px) {
    .footer-inner {
        height: 30px;
    }

    .footer-site-menu {
        display: none;
    }

    .footer-inner img {
        display: none;
    }

    .copyright {
        display: none;
    }

    .copyright-sp {
        display: block;
    }
}


