@charset "UTF-8";

@font-face {
    font-family: "shippori";
    src: url("../font/ShipporiMincho-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "shippori";
    src: url("../font/ShipporiMincho-ExtraBold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'shippori', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    /*英字の折返し*/
    word-break: break-all;
}

html {
    overflow: auto;
}

body {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #3c0f0f;
    background: #fff;
}

/*段落・フォント*/

p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #3c0f0f;
    font-family: 'shippori', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.fg {
    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: 92%;
    max-width: 960px;
    margin: 0 auto;
}

.wrap.min {
    max-width: 700px;
}

.middle_wrap {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.common_h2 h2 {
    font-size: 44px;
    color: #60494a;
}

.common_h2 .sub {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #60494a;
}

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*カラー*/

.tc1 {
    color: #980000;
}

.tc2 {
    color: #0f5779;
}

.tc3 {
    color: #ce9b2f;
}

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

.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: #333;
    padding: 20px 0;
    text-align: center;
    border-top: solid 1px #555;
}

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


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

/*644px以下*/

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

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

    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

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

    article.content_article {
        padding: 40px 0;
    }

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

    .common_h2 h2 {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 5px;
    }

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

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

    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: 20px 0;
    }

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

}