/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/* コピーライトを消す */
.site-footer-copyright p:nth-child(2) {
    display:none;
}

/* フォームボタン */
.smf-action .smf-button-control__control {
    margin-top: 0;
    border-radius: 6px;           /* 角丸 */
    padding: 12px 24px;           /* 余白 */
    font-size: 1rem;              /* 文字サイズ */
    font-weight: 600;             /* 太さ */
    letter-spacing: 0.05em;       /* 字間 */
    background: #353a3f;          /* 背景色 */
    color: #fff;                  /* 文字色 */
    border: none;                 /* 枠線 */
    box-shadow: none;             /* 影 */
    transition: background .3s, transform .2s;
    cursor: pointer;
}
.smf-action .smf-button-control__control:hover {
    background: #5D6063;             /* ホバー色 */
    transform: translateY(2px);   /* 押し込み表現 */
}

/* リンクの色 */
:root {
    --vk-color-text-link: #1a0dab;
}
.entry-body a {
    text-decoration-style: solid;
    text-decoration-color: var(--vk-color-text-link);
}