@charset "UTF-8";

/* ===========================================
   共通設定・リセット
   =========================================== */

/* リセット */
.sb-app * {
    box-sizing: border-box;
}

/* テキスト選択とカーソル表示を制御 */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* テキストコンテンツは選択可能に */
p, span, h1, h2, h3, h4, h5, h6, 
article, .sb-card__title, .sb-card__category,
.sb-keywords__tag {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* PCでは改行を非表示 */
.sp-only {
    display: none;
}

/* スマホでは改行を表示 */
@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}