/* 日本語文字だけゴシックにする */
body, 
h1, h2, h3, h4, h5, h6, 
.entry-title, 
.entry-content, 
.widget, 
.site-title {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* 英数字は元のフォントに戻す */
body :lang(en) {
	font-family: inherit;
}

/* 一文だけ明朝体にする */
.my-mincho {
	font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Times New Roman", serif !important;
}

/* H3を小見出しとして存在感のある大きさに調整 */
.entry-content h3 {
	font-family: "Hiragino Mincho ProN", "BIZ UDPMincho", serif;
	font-size: 22px;
/* ここでサイズ調整 */
	font-weight: normal;
	margin-top: 1.5em;
	margin-bottom: .8em;
	color: #111111;
}

/* --- 記事本文全体は洗練ゴシック --- */
.entry-content, 
.entry-content p {
	font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-size: 16px;
/* 基本文字サイズ */
	line-height: 1.7;
	color: #333333;
}

/* --- H2は章見出し、ゴシックで存在感を確保 --- */
.entry-content h2 {
	font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-size: 26px;
/* 小さすぎるテーマデフォを上書き */
	font-weight: bold;
	margin-top: 2em;
	margin-bottom: 1em;
	color: #222222;
}

/* --- H3は小見出し、洗練された明朝体で上品に --- */
.entry-content h3 {
	font-family: "Hiragino Mincho ProN", "BIZ UDPMincho", serif;
	font-size: 22px;
/* H2より少し小さめで存在感 */
	font-weight: normal;
	margin-top: 1.5em;
	margin-bottom: .8em;
	color: #111111;
	letter-spacing: .02em;
/* 上品さの演出 */
}

/* --- 特定段落だけ明朝にする場合（class="mincho"を付与） --- */
.entry-content p.mincho {
	font-family: "Hiragino Mincho ProN", "BIZ UDPMincho", serif;
	font-size: 16px;
	line-height: 1.7;
	color: #333333;
	letter-spacing: .02em;
}

/* --- 記事冒頭文を少し大きめ・上品なゴシック --- */
.entry-content p:first-of-type {
	font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-size: 18px;
/* 少し大きめにして読みやすく */
	line-height: 1.8;
	font-weight: 500;
	margin-bottom: 1.2em;
}

/* --- 引用ブロック（blockquote）は明朝体で上品に --- */
.entry-content blockquote {
	font-family: "Hiragino Mincho ProN", "BIZ UDPMincho", serif;
	font-size: 17px;
	line-height: 1.8;
	color: #555555;
	border-left: 3px solid #ccc;
	padding-left: 1em;
	margin: 1.2em 0;
	font-style: italic;
}

/* --- 強調したい文章やフレーズ（class="highlight"） --- */
.entry-content span.highlight {
	font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-weight: bold;
	color: #b22222;
/* 赤系などで目立たせる */
}

/* --- 小見出し下のリード文（class="lead"） --- */
.entry-content p.lead {
	font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 1em;
	color: #333333;
}

/* --- 黄色マーカー風ハイライト --- */
.entry-content span.marker {
	position: relative;
	display: inline-block;
	color: #111111;
/* 文字色 */
}

/* 擬似要素で下に黄色のラインを引く */
.entry-content span.marker::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: .1em;
/* 文字下の位置調整 */
	width: 100%;
	height: .4em;
/* ラインの厚さ */
	background-color: #fff176;
/* 黄色（好きな色に変更可） */
	z-index: -1;
/* 文字の後ろに表示 */
	border-radius: 2px;
/* 角丸で柔らかく */
}

/* 段落ブロック用黄色マーカー */
p.marker-text span {
	position: relative;
	display: inline-block;
	color: #111111;
}

p.marker-text span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: .1em;
	width: 100%;
	height: .4em;
	background-color: #fff176;
	z-index: -1;
	border-radius: 2px;
}

/* 黄色マーカー（テーマ問わず） */
span.marker {
	background-color: #fff176;
	border-radius: 2px;
	padding: 0 2px;
/* マーカーの余白 */
}

/* 下線だけの黄色マーカー */
span.marker {
	position: relative;
	display: inline-block;
	color: #111111;
/* 文字色 */
}

span.marker::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: .2em;
/* 文字の下にライン */
	width: 100%;
	height: .3em;
/* ラインの太さ */
	background-color: #fff176;
/* 黄色 */
	z-index: -1;
/* 文字の後ろに表示 */
	border-radius: 2px;
/* 少し角を丸くする */
}

/* 文字下だけに黄色マーカーライン */
span.marker {
	position: relative;
	display: inline;
	color: #111111;
/* 文字色 */
}

span.marker::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: .1em;
/* 文字の下の位置 */
	width: 100%;
	height: .2em;
/* ラインの厚さ */
	background-color: #fff176;
/* 黄色 */
	z-index: -1;
	border-radius: 1px;
/* 少し角丸で自然なライン */
}

/* 文字の下だけライン */
span.marker {
	border-bottom: .15em solid #fff176;
/* ラインの太さと色 */
	border-radius: .05em;
/* 少し角丸で蛍光ペン風 */
	padding-bottom: .05em;
/* 文字と線の間隔調整 */
}

/* 例：不要な古いCSSは削除または /* */
でコメントアウト */
.entry-content span.marker {
}

.entry-content span.marker::after {
}

/* 文字下だけに黄色ライン */
span.marker {
	border-bottom: .15em solid #fff176;
/* ラインの太さと色 */
	border-radius: .05em;
/* 角丸で蛍光ペン風 */
	padding-bottom: .05em;
/* 文字と線の間隔 */
	color: #111111;
/* 文字色 */
}

.wpcom-follow-bubbles,
.wp-block-jetpack-subscriptions,
.jetpack-subscribe-button,
#subscribe-blog {
	display: none !important;
}.entry-content p:first-of-type {
    font-size: inherit !important;
}
.site-info,
.site-footer .powered-by,
.footer-credits {
    display: none !important;
}
.post-navigation {
    display: none;
}
.entry-content h3 {
  border-left: 4px solid #000;
  padding-left: 12px;
}
.entry-content h3 {
  border-left: 3px solid #000;
  padding-left: 10px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}
.kasumi-end-note {
  border: 2px solid #ddd;                 /* 薄いグレーの枠線 */
  background-color: #fdfdfd;              /* 優しい背景色 */
  padding: 18px 20px;                     /* 内側の余白 */
  margin-top: 40px;                        /* 本文との間隔 */
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif; /* ゴシック系 */
  font-size: 0.95em;                       /* 少し小さめ */
  line-height: 1.6;                        /* 読みやすさ */
  border-radius: 10px;                     /* 角丸 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* ほんのり影で浮き上がる */
  position: relative;
}

.kasumi-end-note p {
  margin: 10px 0;                          /* 段落間の余白 */
}

/* 左のアクセントマーク（星）を本文と少しずらして強調 */
.kasumi-end-note p:first-child::before {
  content: "";
  margin-right: 8px;
}
/* 上品なイントロ囲み */
.kasumi-intro {
  border: 1px solid #d3c2a1;         /* 落ち着いたゴールド系の線 */
  background-color: #fcfaf5;         /* 優しいクリーム色 */
  padding: 18px 22px;                /* 内側の余白 */
  margin-bottom: 28px;               /* 本文との間隔 */
  border-radius: 10px;               /* 角丸 */
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1em;                     /* 読みやすいサイズ */
  line-height: 1.6;
  color: #333;                        /* 文字色 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.04); /* ほんのり影で浮き上がり感 */
}

/* 各段落の余白調整 */
.kasumi-intro p {
  margin: 6px 0;
}

/* 最後の段落の下余白をなくす */
.kasumi-intro p:last-child {
  margin-bottom: 0;
}
.kasumi-today-song {
  border: 1px solid #d3c2a1;       /* 上品なゴールド系の線 */
  background-color: #fcfaf5;       /* 優しいクリーム色 */
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 10px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* 段落の余白調整 */
.kasumi-today-song p {
  margin: 4px 0;
}

/* 最初の段落の文字を少し大きめ・強調 */
.kasumi-today-song p:first-child {
  font-size: 1.05em;
  font-weight: bold;
  margin-bottom: 6px;
}
/* 今日の1曲の囲み */
.kasumi-today {
  border: 1px solid #d3c2a1 !important;     /* 上品な薄い枠線 */
  background-color: #faf8f4 !important;     /* 優しい背景 */
  padding: 16px 20px;                       /* 余白 */
  margin: 20px 0;                            /* 上下の余白 */
  border-radius: 10px;                       /* 角丸 */
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);   /* 微影でやさしく浮く */
}

/* 段落内の余白調整 */
.kasumi-today p {
  margin: 4px 0;
}

/* 見出し（今日の1曲）を少し強調 */
.kasumi-today p:first-child {
  font-size: 1.05em;
  font-weight: bold;
}

/* Increase font size of widget titles OA 10645267-zen*/
h2.wp-block-heading,
h3.widget-title {
  font-size: 1.8rem !important;
}

/* 罫線ノート風・記者メモ */
.lined-note {
  margin: 3em 0;
  padding: 1.8em 2em;
  background:
    repeating-linear-gradient(
      to bottom,
      #ffffff,
      #ffffff 1.6em,
      #e5e5e5 1.65em
    );
  border: 1px solid #eee;
  font-size: 0.95em;
  line-height: 1.6;
  color: #222;
}

/* ノートっぽい左余白 */
.lined-note p {
  margin: 0;
}

.lined-note {
  position: relative;
}

.lined-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2em;
  width: 1px;
  height: 100%;
  background: #ddd;
}

.lined-note {
  margin: 3em 0;
  padding: 2em 2.2em;
  background:
    repeating-linear-gradient(
      to bottom,
      #ffffff,
      #ffffff 2.1em,
      #ededed 2.15em
    );
  line-height: 1.9;
  font-size: 0.95em;
  color: #222;
  position: relative;
}

.lined-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.3em;
  width: 1px;
  height: 100%;
  background: #e6e6e6;
}

.lined-note p {
  margin: 0;
}

.lined-note {
  font-size: 0.93em;
}

.soft-box {
  margin: 1.5em 0 2.2em;
  padding: 0.9em 1.2em;
  background: #f4f4f4;
  border-radius: 6px;
  font-size: 0.85em;
  color: #333;
}

.soft-box {
  margin: 1.6em 0 2.4em;
  padding: 1.4em 1.6em;
  background: #f4f4f4;
  border-radius: 6px;
  font-size: 0.85em;
  color: #333;
}

/* 元の文字（Older Posts）を透明にする */
#infinite-handle button {
    color: transparent !important;
    position: relative;
    min-height: 40px; /* ボタンが潰れないように高さを確保 */
}

/* その上に「もっと読む」を重ねて表示する */
#infinite-handle button::before {
    content: "Read More / もっと読む";
    color: #ffffff; /* 文字の色を白に設定（お好みで変えられます） */
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: visible;
    font-size: 14px; /* 文字の大きさを調整 */
    text-transform: none; /* 全大文字になるのを防ぐ */
}

/* ボタンの文字を透明にし、横幅を文字に合わせる */
#infinite-handle button {
    color: transparent !important;
    position: relative;
    padding: 12px 30px !important; /* 左右の余白を広げてボタンを大きくする */
    min-width: 200px; /* ボタンの最小横幅を指定 */
}

/* 新しい文字を中央に正しく配置 */
#infinite-handle button::before {
    content: "Read More / もっと読む";
    color: #ffffff; /* 文字色 */
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: visible;
    font-size: 14px;
    text-transform: none;
    white-space: nowrap; /* 改行させない */
    text-align: center;
}
/* 画像ブロックの直前・直後に出るGoogle広告を消す */
.wp-block-image + ins.adsbygoogle,
.wp-block-image ~ ins.adsbygoogle {
  display: none !important;
}

/* 見出しの直前に出るGoogle広告を消す */
h1 + ins.adsbygoogle,
h2 + ins.adsbygoogle,
h3 + ins.adsbygoogle {
  display: none !important;
}
.marker-yellow {
  background: linear-gradient(transparent 60%, #fff176 60%);
}