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

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

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #333;
    font-size: 14px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", 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;
    }
}

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

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

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

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

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    z-index: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    height: 65px;
    border-top: solid 5px #c02d29;
    background-color: rgba(255,255,255,0.8);
}

@media screen and (max-width: 750px) {
    .header {
        padding: 4vw;
        height: 16vw;
    }
}

.header__container {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: 100%;
    height: 100%;

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

.header__logo {
    padding-left: 25px;
    width: 43%;
}

@media screen and (max-width: 750px) {
    .header__logo {
        padding-left: 0;
        width: 49%;
    }
}

.header__business {
    margin-top: -14px;
    margin-right: 10px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .header__business {
        margin-right: 0;
        padding-top: 2vw;
    }
}

.header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__tel {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    font-size: 28px;
    line-height: 0.8;
}

.ie11 .header__tel {
    margin-bottom: 1px;
    padding-top: 2px;
}

@media screen and (max-width: 750px) {
    .header__tel {
        margin-bottom: 1.3vw;
        font-size: 5.6vw;
    }
}

.header__time {
    padding: 1px 18px;
    background-color: #f4dddd;
    font-weight: bold;
    font-size: 17px;
}

.ie11 .header__time {
    padding: 3px 18px 0px 18px;
}

@media screen and (max-width: 750px) {
    .header__time {
        padding: 0.5vw 7vw;
        font-size: 2.66667vw;
    }
}

.header__trial {
    margin-top: -7px;
}

.ie11 .header__trial {
    margin-top: -3px;
}

.header__btn {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #e56e6b;
    -webkit-box-shadow: 4px 4px #931612;
    box-shadow: 4px 4px #931612;
    color: #fff;
    font-weight: bold;
    font-size: 19px;
}

.header__btn:hover {
    position: relative;
    top: 4px;
    left: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ie11 .header__btn {
    padding: 12px 15px 8px 15px;
}

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

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 5.2vw;
    bottom: 85px;
}

.footer-pagetop img:hover {
    opacity: 0.8;

    stransition: 0.3s;
}

@media screen and (max-width: 750px) {
    .footer-pagetop {
        right: 2vw;
        bottom: 23vw;
        width: 15%;
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1010px;
}

@media screen and (max-width: 750px) {
    .footer-container {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 80px 25px 0px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .footer-nav {
        padding: 0;
        padding-top: 3vw;
        padding-left: 4vw;
        font-size: 3.2vw;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer-nav__item {
    padding-left: 25px;
}

@media screen and (max-width: 750px) {
    .footer-nav__item {
        padding-top: 1vw;
        padding-left: 0;
        width: 48%;
        text-align: left;
    }
}

.footer-nav__item:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/*  footer-logo
--------------------------------------------- */
/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    padding: 25px 0;
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        padding: 5vw;
        font-size: 2.13333vw;
    }
}
