@charset "UTF-8";

/* figureタグリセット */

figure{
    margin: 0;
}

/* タグリセット */

.g-nav{
    margin-bottom: 0;
}

/* テキスト要素 */

.error-txt{
    margin: 25px 0;
}

.text-center{
    text-align: center;
}

.link-list{
    margin-bottom: 25px;
    text-align: center;
}

.link-list li{
    display: inline-block;
    margin-right: 50px;
    font-size: 1.3rem;
}

.link-list li a{
    color: #000000;
}

.btn-top{
    display: inline-block;
    padding: 10px 55px;
    color: #ffffff;
    background-color: #4f68dc;
    font-size: 1.3rem;
    border:solid 1px #cccccc;
    border-radius: 5px;
    text-decoration: none;
}

/* ==========================================================================
   レスポンシブ用 css
   ========================================================================== */

/* smartPhone */
@media screen and (max-width: 720px) {
    /* ここにスマホ用スタイルを記述 */

    .link-list li{
        margin-right: 15px;
    }

}