@charset "UTF-8";

/*=====================================================================
　全体
=====================================================================*/
*{
	box-sizing: border-box;
}

body{
    background: #7ccef4;
    color: #1f1f1f;
    line-height: 1.7;
    /* 文字設定 */
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6{
    /* 文字設定 */
    font-family: "Dela Gothic One", sans-serif;
    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;
}
.btn .fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 1rem;
}


/*=====================================================================
　979px以下
=====================================================================*/
@media only screen and (max-width: 979px) {
    .l_mainArea {
        background: #7ccef4;
    }
}


/*=====================================================================
　580px以下
=====================================================================*/
@media only screen and (max-width: 580px) {
    .btn{
        font-size: 1.35rem;
        max-width: 100%;
    }
    
    
    
    
    
}