@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: 16px;
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Helvetica, Arial, "メイリオ", Meiryo, Osaka, 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: 2.13333vw;
    }
}

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
*
========================================================== */
/* ---------------------------------------------
*   js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    outline: none;
    cursor: default;
}

.js-tel-disabled:hover {
    text-decoration: none;
    opacity: 1;
}

/* ---------------------------------------------
*   Fade In
--------------------------------------------- */
.js-fadein {
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
}

.js-fadein-anime {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header__logo {
    width: 80px;
}

@media screen and (max-width: 750px) {
    .header__logo {
        width: 21.6vw;
    }
}

.header__txt {
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
}

@media screen and (max-width: 750px) {
    .header__txt {
        font-size: 1.5rem;
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .header-container {
        padding: 1.06667%;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 28px;
    bottom: 65px;
    z-index: 999;
}

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

.footer-pagetop__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    background-color: #0a3c8c;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

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

.footer-pagetop__link:hover {
    opacity: 0.8;
}

.ios .footer-pagetop__link:hover,
.android .footer-pagetop__link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .footer-pagetop__link {
        width: 13.06667vw;
        height: 13.06667vw;
    }
}

.footer-pagetop__link-text {
    overflow: hidden;
    width: 0;
    height: 0;
    border-width: 0 10px 17px 10px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

@media screen and (max-width: 750px) {
    .footer-pagetop__link-text {
        border-width: 0 2.53333vw 4.4vw 2.53333vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    background-color: #0a3c8c;
}

.footer-copyright__inner {
    padding-top: 32px;
    padding-bottom: 18px;
}

@media screen and (max-width: 750px) {
    .footer-copyright__inner {
        padding-top: 8vw;
        padding-bottom: 4vw;
    }
}

.footer-copyright__text {
    display: block;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 0.75rem;
}

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