@charset "UTF-8";

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Noto Sans JP', "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
    /*英字の折返し*/
    word-break: break-all;
}

html {
    overflow: auto;
}

body {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
}

/*段落・フォント*/

p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Noto Sans JP', "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
}


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

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

/*全体*/

article.content_article {
    padding: 40px 0;
}

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

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

/*内包*/

.wrap {
    width: 92%;
    max-width: 700px;
    margin: 0 auto;
}

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

/*共通見出し*/

.common_h2 {
    text-align: center;
    margin-bottom: 40px;
}

.common_h2 .sub {
    font-size: 18px;
    font-weight: bold;
    color: #b3b3b3;
}

.common_h2 h2 {
    font-size: 36px;
    font-weight: 900;
    color: #025866;
}


/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*文字サイズ*/

.fsb {
    font-size: 150%;
}

.fsb2 {
    font-size: 200%;
}

/*カラー*/

.tc0 {
    color: #486886;
}

.tc1 {
    color: #ff0062;
    color: #d3401d;
    color: #980000;
}

.tc2 {
    color: #53c0bd;
    color: #0065ad;
    color: #0f5779;
}

.tc3 {
    color: #f29707;
    color: #ce9b2f;
}

/*マーカー*/

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

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

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

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

.lp_img img {
    display: block;
}

/*枠付き*/

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

/*画像補足情報*/

figure figcaption {
    text-align: right;
    font-size: 11px;
    line-height: 2;
    color: #666;
}

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

.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%;
}

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

._pc {}

._sp {
    display: none !important;
}


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

footer {
    background: #fff;
    border-top: solid 1px #ccc;
    padding: 20px 0;
    text-align: center;
}

footer p.copy {
    color: #999;
    font-size: 12px;
}

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: 92%;
    }

}

/*644px以下*/

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

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

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

    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;
    }

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

    /*共通見出し*/

    .common_h2 {
        margin-bottom: 30px;
    }

    .common_h2 .sub {
        font-size: 12px;
    }

    .common_h2 h2 {
        font-size: 24px;
    }


    .fsb {
        font-size: 135%;
    }

    .fsb2 {
        font-size: 150%;
    }

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

    .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;
    }

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

    footer {
        padding: 30px 0;
    }


}

/*375px以下*/

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

/*360px以下*/

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

/*330px以下*/

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