@charset "utf-8";
/* ===========================================================
▼ design-plus.css 上書き・追加
-------------------------------------------------------------- */

/* -----------------------------------------------------------
▼ デフォルト見出し+クイックタグ見出しのスタイル 222〜245行目
-------------------------------------------------------------- */
/* 投稿記事ページ */
.single {
	.post_content h2 {
		padding-left: 0.6em;
		border-left: solid 4px #306090;
		text-align: left;
	}

	.post_content h3 {
		margin: 3em 0 1em 0;
		padding-bottom: 0.2em;
		border-bottom: solid 2px #306090;
		line-height: 1.6;
	}
}

@media screen and (max-width: 599px) {
	.single {
		.post_content h3 {
			margin: 2em 0 1em 0;
		}
	}
}

/* 固定ページ */
.page {
	.post_content h2 {
		padding-left: 0.6em;
		border-left: solid 4px #306090;
		text-align: left;
	}

	.post_content h3 {
		margin: 0 0 1.3em 0;
		padding: 0 0.4em 0.2em;
		border-bottom: solid 2px #306090;
		line-height: 1.6;
	}

	.post_content img {
		display: block;
		width: 100% !important;
		margin: 0 auto 1.5em !important;
	}

	.post_content video {
		width: auto !important;
		margin-bottom: 3em;
	}
}

.single,
.page {
	/* ▼▼▼ original */
	.post_content {
		p:has(+ h3) {
			margin-bottom: 3em;
		}

		p:has(+ .wp-block-embed.is-type-video) {
			margin-bottom: 1.3em;
		}

		.wp-block-group {
			margin-bottom: 2em;
			padding: 2em;
			border: 1px solid #ccc;
		}

		.wp-block-button {
			display: block;
			width: fit-content;
			min-width: 320px;
			margin: 0 auto 2em;

			.wp-block-button__link.wp-element-button {
				transform: scale(0.9);
				padding: calc(0.667em + 4px) calc(1.333em + 2px) calc(0.667em + 2px);
				background: #3cab34;
				font-weight: 700;
				line-height: 1.6;
				color: #fff;
				transition: 0.2s ease;

				&:hover {
					transform: scale(1);
					text-decoration: none;
				}
			}
		}
	}
}

/* -----------------------------------------------------------
▼ サイドバー
-------------------------------------------------------------- */
/* original_side_banner */
.post_content .original_side_banner {
	margin: 0;
	padding: 0 20px;

	li {
		list-style: none inside;
	}
}

@media (width <= 1100px) {
	.post_content .original_side_banner {
		padding: 0;
	}
}

/* -----------------------------------------------------------
▼ 著書の外部リンクをオリジナル画像に変更（TCDテーマデフォルトアイコン上書き）
-------------------------------------------------------------- */
.original_author_link {
	margin: 16px 0 5px;

	li {
		display: inline-block;
		margin: 16px 16px 0 0;

		a {
			display: block;
			width: auto !important;
			height: auto !important;
			overflow: visible;

			&::before {
				content: '' !important;
				width: 0 !important;
			}

			img {
				display: block;
				max-height: 56px !important;
				transition: transform 0.25s ease-out;
				backface-visibility: hidden;
				will-change: transform;
				image-rendering: -webkit-optimize-contrast;
			}

			&:hover,
			&:active {
				img {
					transform: scale(1.05) translateZ(0);
				}
			}
		}
	}
}

@media (width <= 880px) {
	.home {
		.original_author_link {
			text-align: center;
		}
	}
}

@media (width <= 750px) {
	.archive {
		.original_author_link {
			text-align: center;
		}
	}
}