<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/

/* h3見出し追加 */
.entry-content h3{
	position:relative;
	padding:9px;
	font-weight: bold;
	font-size: 18px;
	background-color: #fcabc1;
	color: #fff;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}
 
.entry-content h3:before{
	content:''; 
	height:0; 
	width:0; 
	display:block; 
	border:13px transparent solid; 
	border-right-width:0; 
	border-left-color:#fcabc1; 
	position:absolute; 
	top:25px; 
	left:15px;
	transform:rotate(-270deg);
	-webkit-transform:rotate(-270deg);
	-moz-transform:rotate(-270deg);
	-o-transform:rotate(-270deg);
	-ms-transform:rotate(-270deg);
}
/* h3見出し追加 */

/* h2見出し追加 */
.entry-content h2{
    margin: 0 0 1.5em;
    padding: 0.8em;
    border-left: 7px solid #fcabc1;
    border-bottom: 1px dashed #fcabc1;
    font-size: 1.143em;
    font-weight: bold;
}
/* h2見出し追加 */</pre></body></html>