/*
Theme Name: SPECC Child
Template: generatepress
*/

/* 背景 */
body {
    background-color: #f9fafb !important;
}

/* 最大幅を強制 */
#page {
    max-width: 1100px !important;
    margin: 40px auto !important;
}

/* 中央寄せ */
#content {
    margin: 0 auto !important;
}

/* 記事カード */
.inside-article {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 8px !important;
}

/* コメントもカード化 */
.comments-area {
    background: #ffffff !important;
    padding: 30px !important;
    margin-top: 40px !important;
    border-radius: 8px !important;
}

/* タイトル */
.entry-title {
    font-size: 28px !important;
    font-weight: bold !important;
}

/* 本文 */
.entry-content p {
    line-height: 1.9 !important;
}

/* コンテンツエリア（白いカード内部）の余白を調整 */
.separate-containers .inside-article {
    padding-left: 30px;  /* 左の余白 */
    padding-right: 30px; /* 右の余白 */
    padding-top: 40px;   /* 上の余白 */
    padding-bottom: 40px;/* 下の余白 */
}

/* モバイル表示で余白が広すぎる場合はこちらで調整 */
@media (max-width: 768px) {
    .separate-containers .inside-article {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* どこがはみ出しているか視覚化する
* {
    outline: 1px solid red !important;
}
 */