@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;
    /*自動文字詰め*/
    font-feature-settings: "palt";
    /*英字の折返し*/
    word-break: break-all;
}

html {
    overflow: auto;
    background: #c7c7c7;
}

body {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #1a1a1a;
    background: #fff;
    width: 100%;
    max-width: 750px;
    margin: auto;
    box-shadow: 0 0 8px #a8a8a8;
}

/*段落・フォント*/

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

.fm {
    font-family: 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}


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

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

/*全体*/

article.content_article {
    padding: 80px 0;
}

.none_pt {
    padding-top: 0 !important;
}

.none_pb {
    padding-bottom: 0 !important;
}

/*内包*/

.wrap {
    width: 88%;
    max-width: 960px;
    margin: 0 auto;
}

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

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

/*---------------------
* セクション内レター
---------------------*/

article section.ca_sec {
    background: #fff;
}

article section.ca_sec:last-child {
    margin-bottom: 0
}

/*セクション内レターの段落*/

article section.ca_sec .wrap > p {
    padding: 50px 0;
    font-size: 22px;
    line-height: 1.7;
}

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

/*ドット背景*/

.lp_bg_dot {
    background: #ededed;
    background-image: radial-gradient(#e3e3e3 6%, transparent 12%), radial-gradient(#e3e3e3 6%, transparent 12%);
    background-position: 0 0, 11px 11px;
    background-size: 22px 22px;
}

/*ライン背景*/

.lp_bg_line {
    background: #000;
    background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0.3) 0, transparent 1%, transparent 100%);
    background-size: 100px;
}

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

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*文字サイズ*/

.fsb {
    font-size: 125%;
}

.fsb2 {
    font-size: 150%;
}

.fsb3 {
    font-size: 175%;
}

/*カラー*/

.tc0 {
    color: #486886;
}

.tc1 {
    color: #e03144;
}

.tc2 {
    color: #2a6c9b;
}

.tc3 {
    color: #cba000;
}

.tc4 {
    color: #ad61b4;
}

/*マーカー*/

.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_p {
    padding: 0 60px;
}

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

.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,
.mov img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

._pc {}

._sp {
    display: none !important;
}


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

footer {
    background: #333;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 12px;
}

footer p.copy {
    color: #fff;
}

footer p.tokushoho {
    position: relative;
}

footer p.tokushoho a {
    text-decoration: underline;
    color: #fff;
    transition: all 0.5s;
}

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


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

/*644px以下*/

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

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

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

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

    .fsb {
        font-size: 118%;
    }

    .fsb2 {
        font-size: 140%;
    }

    .fsb3 {
        font-size: 160%;
    }

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

    .wrap {
        width: 92%;
    }

    article.content_article {
        padding: 50px 0;
    }

    article section.ca_sec .wrap > p {
        padding: 40px 0;
        font-size: 18px;
    }

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

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

    footer p {
        font-size: 10px;
    }

}
