@charset "UTF-8";
/*
Theme Name: AI脆弱性チェッカー
Author: Caribou
Author URI: https://caribou.co.jp/
Tested up to: 6.6
Requires PHP: 5.6
Version: 1.0
*/

.site-header,
.site-footer {
    background-color: #ddd;
    text-align: center;
    padding: 1rem;
}

.site-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 3rem;
}

/* 幅広・全幅ブロック以外にデフォルトコンテンツ幅を指定 */
.entry-content > *:not(.alignwide):not(.alignfull) {
    max-width: var(--wp--style--global--content-size);
}

/* 幅広ブロックに幅広コンテンツ幅を指定 */
.entry-content > *.alignwide {
    max-width: var(--wp--style--global--wide-size);
}

/* 全幅ブロックを除いて左右にオートマージンを付与する */
.entry-content > *:not(.alignfull) {
    margin-right: auto;
    margin-left: auto;
}

.entry-content {
	padding-left: var(--wp--custom--gutter);
	padding-right: var(--wp--custom--gutter);
}

.entry-content > *.alignfull {
	margin-left: calc( var(--wp--custom--gutter) * -1);
	margin-right: calc( var(--wp--custom--gutter) * -1);
}