@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;
    background: #fff;
}

body {
    width: 100%;
    max-width: 640px;
    margin: auto;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
}

/*段落・フォント*/

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


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

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

.wrap {
    padding: 0 20px;
    margin: 0 auto;
}

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

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

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

.lp_img img {
    display: block;
}

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

._pc {}

._sp {
    display: none !important;
}


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

footer {
    background: #ff9900;
    padding: 20px 0;
    text-align: center;
}

footer p.address {
    font-size: 18px;
    color: #fff;
}

footer h2 {
    font-size: 32px;
    color: #fff;
}

footer p.url {
    color: #fff;
    font-size: 20px;
}

footer p.url a {
    color: #fff;
}


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

/*644px以下*/

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

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

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

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

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

    .wrap {
        padding: 0 14px
    }

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

    ._pc {
        display: none !important;
    }

    ._sp {
        display: block !important;
    }

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

    footer {
        padding: 15px 0;
    }

    footer .wrap {
        padding: 0 6px;
    }

    footer p.address {
        font-size: 10.5px;
    }

    footer h2 {
        font-size: 20px;
    }

    footer p.url {
        font-size: 12px;
    }


}
