@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 14px;
    font-family: "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 1.86667vw;

        scrollbar-width: none;
    }
}

body {
    min-width: 1200px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    body {
        overflow-x: hidden;
        min-width: 320px;
        line-height: 1.5;

        -ms-overflow-style: none;
    }
    body::-webkit-scrollbar {
        display: none;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    vertical-align: bottom;

    -webkit-backface-visibility: hidden;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.msp-header__main {
    border-bottom: 1px solid #d3d3d3;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    padding-top: 25px;
}

@media screen and (max-width: 750px) {
    .contents {
        padding-top: 32vw;
    }
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    background-color: #fff;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    margin: 0 auto;
    padding-top: 36px;
    padding-bottom: 36px;
    width: 1020px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .footer__inner {
        display: block;
        padding-top: 11.2vw;
        padding-bottom: 10.66667vw;
        width: 100%;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    width: 301px;
}

@media screen and (max-width: 750px) {
    .footer-logo {
        margin: 0 auto;
        width: calc(657 / 750 * 100vw);
    }
}

@media screen and (min-width: 751px) {
    .footer-logo__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-logo__link:hover {
        opacity: 0.8;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    margin-right: 15px;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        margin-top: 4.53333vw;
        margin-right: 0;
        text-align: center;
    }
}

.footer-copyright__txt {
    color: #666666;
    font-weight: 500;
    font-size: 0.85714rem;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 750px) {
    .footer-copyright__txt {
        text-align: center;
        font-size: 2.66667vw;
    }
}
