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

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

Contents:
    base settings
    javascript style hooks
    base blocks
    ========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 14px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;

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

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

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

@media screen and (max-width: 767px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    color: #303030;
    text-decoration: none;
    -webkit-transition: opacity 0.8ms;
    transition: opacity 0.8ms;
}

a:hover {
    opacity: 0.8;
}

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

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .header {
        width: 100%;
    }
}

/* ---------------------------------------------
*   header-logo
--------------------------------------------- */
.header-logo {
    margin: 21px 0 21px 90px;
}

@media screen and (max-width: 767px) {
    .header-logo {
        margin: 3.6vw 0vw 3.2vw 5.33333vw;
    }
}

@media screen and (max-width: 767px) {
    .header-logo img {
        width: 13.3333%;
    }
}

/*  footer
--------------------------------------------- */
.footer {
    padding: 100px 0 40px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 11.33333vw 0;
        border-top: 0.26667vw solid #000;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 35px;
    margin-left: auto;
    width: 127px;
}

@media screen and (max-width: 767px) {
    .footer-logo {
        margin-top: 4vw;
        margin-bottom: 7.66667vw;
        width: calc(127 / 750 * 100vw);
    }
}

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

/*  footer-copy
--------------------------------------------- */
.footer-copy {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: normal;
    color: #333333;
}

@media screen and (max-width: 767px) {
    .footer-copy {
        font-size: 2vw;
    }
}