@charset "UTF-8";

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    /*自動文字詰め*/
    font-feature-settings: "palt";
    /*英字の折返し*/
    word-break: break-all;
}

html {
    overflow: auto;
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

body {
    overflow: hidden;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
    background-color: #fff;
    /*背景画像*/
    background-image: url(../images/bg4.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/*段落・フォント*/

p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.font-g {
    font-family: 'Noto Sans JP', "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
}


/******************************************************************************
*
* [共通]基本設定
*
******************************************************************************/

/*---------------------
* コンテナ関係
---------------------*/

/*全体*/

article.content_article {
    padding: 80px 0;
}

article.content_article.none_pt {
    padding-top: 0;
}

article.content_article.none_pb {
    padding-bottom: 0;
}

/*内包*/

.wrap {
    width: 960px;
    margin: 0 auto;
}

.middle_wrap {
    width: 1400px;
    margin: 0 auto;
}

/*---------------------
* 背景
---------------------*/

/*要素が見えたら背景画像を浮遊化*/

.fixed_bg {
    background-position: top center;
    background-size: 100vw;
    background-repeat: no-repeat;
}

.fixed_bg.on {
    background-attachment: fixed;
}

/*---------------------
* テキスト関係
---------------------*/

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*文字サイズ*/

.fsb {
    font-size: 150%;
}

.fsb2 {
    font-size: 200%;
}

/*カラー*/

.tc0 {
    color: #486886;
}

.tc1 {
    color: #980000;
}

.tc2 {
    color: #0f5779;
}

.tc3 {
    color: #f36324;
}

.tc4 {
    color: #05c756;
    color: #018f6d;
}

.tc5 {
    color: #6e3a87;
    color: #573b77;
}

/*マーカー*/

.tm1 {
    background: linear-gradient(transparent 70%, #ffa3d1 70%);
}

.tm2 {
    background: linear-gradient(transparent 70%, #72edff 70%);
}

.tm3 {
    background: linear-gradient(transparent 70%, #ffe571 70%);
}

.tm4 {
    background: linear-gradient(transparent 70%, #b6ebb8 70%);
}

/*改行(SP時のみ改行)*/

.brSp {
    display: none;
}

/*---------------------
* 画像関係
---------------------*/

.lp_img img {
    display: block;
}

/*枠付き*/

.lp_img.be_border img {
    border: solid 1px #e0e0e0;
}

/*画像補足情報*/

figure figcaption {
    font-size: 14px;
    line-height: 2;
    color: #666;
    margin-top: 5px;
}

figure figcaption.tr {
    text-align: right;
}

/*---------------------
* 動画(埋め込み用)
---------------------*/

.mov {
    width: 100%;
    height: auto;
    position: relative;
}

.mov::before {
    content: "";
    display: block;
    padding-top: 56.2%;
}

.mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*---------------------
* 表示関係
---------------------*/

.lp_m {
    margin-top: 50px;
    margin-bottom: 50px;
}

._pc {}

._sp {
    display: none !important;
}


/******************************************************************************
*
* [共通]フッター
*
******************************************************************************/

/*追従ボタン*/

#fixed_btn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 150px;
    z-index: 9;
}

/*フッター*/

footer {
    background: #1a1717;
    padding: 12px 0 20px;
    text-align: center;
}

footer p.copy {
    color: #ccc;
    font-size: 12px;
    margin-top: 5px;
}

footer p.tokushoho a {
    font-size: 14px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.5s;
}

footer p.tokushoho a:hover {
    opacity: 0.7;
}




/******************************************************************************
*
* [共通]レスポンシブ対応
*
******************************************************************************/

/*1920px以下*/

@media only screen and (max-width: 1920px) {}

/*1400px以下*/

@media only screen and (max-width: 1400px) {

    /*---------------------
    * [共通]基本設定
    ---------------------*/

    .middle_wrap {
        width: 92%;
    }

}

/*960px以下*/

@media only screen and (max-width: 960px) {

    /*---------------------
    * [共通]基本設定
    ---------------------*/

    .wrap {
        width: 94%;
    }

}

/*644px以下*/

@media only screen and (max-width: 644px) {

    /*---------------------
    * [共通]背景/全体テキスト
    ---------------------*/

    body {
        background: none;
        font-size: 14px;
        line-height: 1.6;
    }

    body::after {
        content: "";
        display: block;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-image: url(../images/bg4.jpg);
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    /*---------------------
    * 浮遊背景(iOS Safari用)
    ---------------------*/

    _::-webkit-full-page-media,
    _:future,
    :root .fixed_bg.on {
        /*背景の消去*/
        background-image: none !important;
        position: relative;
        /*状況に応じて変更*/
        overflow: hidden;
        z-index: -1;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .fixed_bg.on:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100vw;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .fixed_bg.on .wrap {
        position: relative;
    }

    _::-webkit-full-page-media,
    _:future,
    :root selector.fixed_bg.on:before {
        /*個別に背景設定*/
        background-image: url(../images/header_img.jpg);
    }

    /*---------------------
    * [共通]コンテナ関係
    ---------------------*/

    article.content_article {
        padding: 40px 0;
    }

    .lp_m {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*---------------------
    * [共通]テキスト関係
    ---------------------*/

    .fsb {
        font-size: 120%;
    }

    .fsb2 {
        font-size: 135%;
    }

    .brRes {
        display: none;
    }

    .brSp {
        display: block;
    }

    /*スマホ用テキストサイズ*/

    .sptxt1 {
        font-size: 100%;
    }

    .sptxt2 {
        font-size: 110%;
    }

    .sptxt3 {
        font-size: 120%;
    }

    .sptxt4 {
        font-size: 130%;
    }

    .sptxt5 {
        font-size: 140%;
    }

    /*---------------------
    * [共通]画像関係
    ---------------------*/

    figure figcaption {
        text-align: left;
        font-size: 10px;
        line-height: 1.5;
        margin-top: 5px;
    }

    /*---------------------
    * [共通]表示関係
    ---------------------*/

    ._pc {
        display: none !important;
    }

    ._sp {
        display: block !important;
    }

    /*---------------------
    * [共通]フッター
    ---------------------*/

    /*追従ボタン*/

    #fixed_btn {
        bottom: 5px;
        right: 5px;
        width: 90px;
    }

    /*フッター*/

    footer {
        padding: 8px 0 10px;
    }

    footer p.copy {
        font-size: 10px;
        margin-top: 2px;
    }

    footer p.tokushoho a {
        font-size: 13px;
    }

}

/*375px以下*/

@media only screen and (max-width: 375px) {}

/*360px以下*/

@media only screen and (max-width: 360px) {}

/*330px以下*/

@media only screen and (max-width: 330px) {}
