@charset "UTF-8";

/*=====================================================================
　全体
=====================================================================*/
*{
	box-sizing: border-box;
}

body{
    background-color: #f5f1e5;
    color: #1f1f1f;
    line-height: 1.7;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-optical-sizing: auto;
    font-style: normal;
    background-image: url(../../assets/img/bk.png);
    position: relative;
    z-index: 5;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 400;
    font-style: normal;
}

/* ボタン
--------------------------*/
.btn{
    background: #000;
    border-bottom: 5px solid #000;
    border-radius: 3rem;
    color: #fff;
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 2.5rem auto 0;
    max-width: 80%;
    min-height: 70px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s;
    /* 中央寄せ */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.btn:hover {
    border-bottom: 2px solid #000;
    color: #fff;
}
.pc {
    display:block!important;
}
.sp {
    display:none!important;
}


/*=====================================================================
=====================================================================*/
@media only screen and (max-width: 768px) {
    body {
    background-image: url(../../assets/img/bk.png);
    }
    .pc {
    display:none!important;
}
    .sp {
        display:block!important;
    }
}


    
    
    
    
