@charset "utf-8";

/*
==================================================
Common(共通設定)
==================================================
*/
* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    /* ゴシック体系のフォント指定 */
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-rendering: optimizeLegibility;
}


/*
-------------------------
for SP
-------------------------
*/
@media only screen and (max-width:767px) {
    body {
        width: 100%;
        font-size: 13px;
    }
}

/*
-------------------------
for PC
-------------------------
*/
@media only screen and (min-width:768px) {
    body {
        min-width: 960px;
    }

    #wrapper {}

    br.pc_none {
        display: none;
    }
    
}



/*
==================================================
thanks
==================================================
*/

/*
-------------------------
for SP
-------------------------
*/
@media only screen and (max-width:767px) {
    .thanks {
        width: 90%;
        margin: auto;
    }

    .thanks h1 {
        margin: 60px auto 20px;
        font-size: 20px;
        font-weight: bold;
        padding: 5px 0;
        border-bottom: 1px solid #000;
        text-align: center;
    }

    .thanks p {
        font-size: 14px;
        text-align: center;
    }

    address {
        text-align: center;
        font-style: normal;
        font-size: 12px;
        padding: 10px 0 10px;
        display: block;
        clear: both;
    }
}

/*
-------------------------
for PC
-------------------------
*/
@media only screen and (min-width:768px) {
    .thanks {
        width: 600px;
        margin: auto;
        padding: 80px 0;
    }

    .thanks h1 {
        margin: 60px auto 20px;
        font-size: 24px;
        padding: 5px 0;
        border-bottom: 1px solid #000;
        text-align: center;
    }

    .thanks p {
        font-size: 18px;
        text-align: center;
    }

    address {
        text-align: center;
        font-style: normal;
        font-size: 12px;
        padding: 10px 0 10px;
        display: block;
        clear: both;
    }
}
