/* ==========================================================================
 * bundle_single_blog.css
 *
 * single_blog.php（ブログ記事）専用の結合CSS。2026/09/21作成（フェーズ28）。
 *
 * 目的: head のレンダリングブロッキングCSSを 6本 → 1本 に減らす。
 *   フェーズ21（CSS容量 290→155KB）はLCPをほとんど動かさなかったが、
 *   フェーズ22（head のリクエスト「数」削減）は 8.2→7.3秒 と効いた。
 *   効くのは「本数」であるという実績に基づく。
 *
 * 中身: 以下6ファイルを $page_css の記述順のまま単純連結しただけ。
 *   値の変更・並べ替え・重複排除は一切行っていない。
 *     1. module_blog.css
 *     2. module_blog_sp.css
 *     3. module_post.css
 *     4. module_post_sp.css
 *     5. module_pro.css
 *     6. module_pro_sp.css
 *
 * 前提: 6本とも @charset・@import を持たず、url() はすべて ../img/ の相対パス。
 *   このファイルも同じ /css/ に置くため、画像パスは壊れない。
 *
 * 注意: 元の6ファイルは他テンプレートが使用中なのでサーバーから削除しないこと。
 *   元ファイルを修正したら、この結合ファイルも再生成すること。
 *   （再生成手順は Patches/20260921_single-blog-php_css-bundle.php を参照）
 * ========================================================================== */


/* ===== 1/6: module_blog.css ===== */
/***************************
 *
 * ブログ記事ページ用 CSS（PC）
 *
 * 未使用CSS削減対応（2026/09/20追加）
 * 背景: ブログ記事ページ（single_blog.php）では module_page.css の全628件のルールのうち
 *   実際に使われているのは26件だけで、残りはサービスLP用の未使用CSSだった
 *   （本番の記事9本をブラウザで実測して確認）。PageSpeed Insightsの
 *   「使用していないCSS」およびレンダリングブロック対策として、記事ページでは
 *   module_page.css の読み込みをやめ、実際に使われているルールだけをこのファイルに切り出す。
 * 内容: module_page.css から下記のルールのみを、@media のネスト構造と記述順序を保ったまま抽出。
 *   値は一切変更していない。読み込み位置も元ファイルと同じ（$page_css内の同じ順番）
 *   なのでカスケードの優先順位は変わらない。
 * 日付: 2026/09/20
 *
 **************************/
@media all and (min-width: 737px) {
	.page-header-wrap {
		padding-top: 130px;
	}
	.page-header.section-header {
		max-width: 100%;
		margin: 0 0 50px;
	}
	.page-header .page-header-top {
		width: 110px;
		margin-bottom: 12px;
	}
	.page-header .page-header-top a {
		display: block;
		color: #666666;
		font-size: 12px;
		text-align: center;
		background-color: #fff;
		line-height: 24px;
		border: 1px solid #efefef;
		border-radius: 15px;
	}
	.page-header .page-header-top a:hover {
		text-decoration: none;
		background-color: #666666;
		color: white;
	}
	.page-header-title-en::first-letter {
		text-transform: uppercase;
	}
	.page-contents {
		padding: 0px 0 1px;
		position: relative;
	}
	.l-page {
		padding-bottom: 170px;
		box-sizing: border-box;
	}
	.page {
		line-height: 2em;
		color: #333;
		font-size: 16px;
		position: relative;
	}
	.page p a {
		color: #222;
		text-decoration: underline;
	}
	.page a:hover {
		text-decoration: none;
	}
	.page p {
		color: #222222;
		font-size: 16px;
		margin-bottom: 30px;
		line-height: 2em;
	}
	.page .title-1 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
	}
	.page .title-1::after {
		content: "";
		display: block;
		width: 80px;
		height: 1px;
		background: #1d2088;
		margin: 25px auto 65px;
	}
	.page .title-2 {
		text-align: left;
		font-size: 28px;
		font-weight: bold;
	}
	.page .title-2::after {
		content: "";
		display: block;
		width: 80px;
		height: 1px;
		background: #1d2088;
		margin: 25px 0 50px;
	}
	.aligncenter {
		display: block;
		margin: 30px auto;
	}
	.post-single ul {
		list-style: none; /* デフォルトのアイコンを消す */
		margin: 10px 10px 10px 25px; /* デフォルト指定上書き */
		padding: 0; /* デフォルト指定上書き */
		position: relative;
	}
	.post-single p + ul {
		margin-top: -25px;
	}
	.post-single ul li {
		font-size: 16px;
	}
	.post-single ul li::before {
		content: ""; /* 空の要素作成 */
		width: 10px; /* 幅指定 */
		height: 10px; /* 高さ指定 */
		display: inline-block; /* インラインブロックにする */
		background-color: #222; /* 背景色指定 */
		border-radius: 50%; /* 要素を丸くする */
		position: relative; /* 位置調整 */
		top: -1px; /* 位置調整 */
		margin-right: 5px; /* 余白指定 */
	}
	.post-single ol {
		list-style: none; /* デフォルトのアイコンを消す */
		margin: 0 0 30px; /* デフォルト指定上書き */
		padding: 0; /* デフォルト指定上書き */
		counter-reset: li_count; /* カウンタをセット */
		position: relative;
	}
	.post-single ol li {
		font-size: 16px;
		margin-bottom: 5px; /* 要素と要素の間指定 */
	}
	.post-single ol li::before {
		counter-increment: li_count; /* カウンタの値を計算していく */
		content: counter(li_count) "."; /* 数字出力 */
		margin-right: 5px; /* 余白指定 */
	}
	.post-single p + ol {
		margin-top: -25px;
	}
	.post-single p {
		color: #222;
		font-size: 16px;
		line-height: 2em;
		margin-bottom: 30px;
	}
}


/* ===== 2/6: module_blog_sp.css ===== */
/***************************
 *
 * ブログ記事ページ用 CSS（SP）
 *
 * 未使用CSS削減対応（2026/09/20追加）
 * 背景: ブログ記事ページ（single_blog.php）では module_page_sp.css の全621件のルールのうち
 *   実際に使われているのは27件だけで、残りはサービスLP用の未使用CSSだった
 *   （本番の記事9本をブラウザで実測して確認）。PageSpeed Insightsの
 *   「使用していないCSS」およびレンダリングブロック対策として、記事ページでは
 *   module_page_sp.css の読み込みをやめ、実際に使われているルールだけをこのファイルに切り出す。
 * 内容: module_page_sp.css から下記のルールのみを、@media のネスト構造と記述順序を保ったまま抽出。
 *   値は一切変更していない。読み込み位置も元ファイルと同じ（$page_css内の同じ順番）
 *   なのでカスケードの優先順位は変わらない。
 * 日付: 2026/09/20
 *
 **************************/
@media all and (max-width: 736px) {
	.page-header-wrap {
		padding-top: 70px;
	}
	.page-header.section-header {
		max-width: 100%;
		margin: 0 0 20px;
	}
	.page-header .page-header-top {
		width: 110px;
		margin-bottom: 12px;
	}
	.page-header .page-header-top a {
		display: block;
		color: #666666;
		font-size: 11px;
		text-align: center;
		background-color: #fff;
		line-height: 22px;
		border: 1px solid #efefef;
		border-radius: 15px;
	}
	.page-header .page-header-top a:hover {
		text-decoration: none;
		background-color: #666666;
		color: white;
	}
	.page-header-title {
		text-align: left;
	}
	.page-header-title-en::first-letter {
		text-transform: uppercase;
	}
	.page-contents {
		padding: 0px 0 1px;
		position: relative;
	}
	.l-page {
		padding-bottom: 60px;
		box-sizing: border-box;
	}
	.page {
		line-height: 2em;
		color: #333;
		font-size: 13px;
		position: relative;
	}
	.page p a {
		color: #222;
		text-decoration: underline;
	}
	.page a:hover {
		text-decoration: none;
	}
	.page p {
		color: #222222;
		font-size: 13px;
		margin-bottom: 30px;
		line-height: 2em;
	}
	.page .title-1 {
		text-align: center;
		font-size: 18px;
		line-height: 1.5em;
		font-weight: bold;
	}
	.page .title-1::after {
		content: "";
		display: block;
		width: 50px;
		height: 1px;
		background: #1d2088;
		margin: 15px auto 65px;
	}
	.page .title-2 {
		text-align: left;
		font-size: 18px;
		font-weight: bold;
	}
	.page .title-2::after {
		content: "";
		display: block;
		width: 50px;
		height: 1px;
		background: #1d2088;
		margin: 15px 0 25px;
	}
	.aligncenter {
		display: block;
		margin: 30px auto;
	}
	.post-single ul {
		list-style: none; /* デフォルトのアイコンを消す */
		margin: 0 0 30px; /* デフォルト指定上書き */
		padding: 0; /* デフォルト指定上書き */
		position: relative;
	}
	.post-single ul li {
		font-size: 16px;
	}
	.post-single p + ul {
		margin-top: -25px;
	}
	.post-single ul li::before {
		content: ""; /* 空の要素作成 */
		width: 10px; /* 幅指定 */
		height: 10px; /* 高さ指定 */
		display: inline-block; /* インラインブロックにする */
		background-color: #222; /* 背景色指定 */
		border-radius: 50%; /* 要素を丸くする */
		position: relative; /* 位置調整 */
		top: -1px; /* 位置調整 */
		margin-right: 5px; /* 余白指定 */
	}
	.post-single ol {
		list-style: none; /* デフォルトのアイコンを消す */
		margin: 0 0 30px; /* デフォルト指定上書き */
		padding: 0; /* デフォルト指定上書き */
		counter-reset: li_count; /* カウンタをセット */
		position: relative;
	}
	.post-single p + ol {
		margin-top: -25px;
	}
	.post-single ol li {
		font-size: 16px;
		margin-bottom: 5px; /* 要素と要素の間指定 */
	}
	.post-single ol li::before {
		counter-increment: li_count; /* カウンタの値を計算していく */
		content: counter(li_count) "."; /* 数字出力 */
		margin-right: 5px; /* 余白指定 */
	}
	.post-single p {
		color: #222;
		font-size: 16px;
		line-height: 2em;
		margin-bottom: 30px;
	}
}


/* ===== 3/6: module_post.css ===== */
/***************************
 *
 * 投稿・カテゴリーページ
 * ★ページ中身用★
 *
 **************************/

@media all and (min-width: 737px) {

/*--------------------------------
カテゴリ
---------------------------------*/

/*--------------------------------
シングル
---------------------------------*/

.post-single {
	line-height: 2em;
}
.page-time {
	display: block;
	text-align: right;
	font-size: 12px;
	color: #999999;

	position: absolute;
	right: 0;
	top: 30px;
}
.post-tags {
	display: inline-block;
}
.post-tags a {
	color: #222;
	display: inline-block;
	border-bottom: 1px solid #222;

	margin-right: 40px;
}
.post-tags a:before {
	content: "# ";
}
.post-tags a:hover {
	border-bottom: 1px solid white;
}
.post-title {
	font-size: 30px;
	color: #222222;
	font-weight: 500;
	margin-top: 55px;
	margin-bottom: 30px;
	line-height: 1.666em;
}
.post-header {
	position: relative;
}
.post-header .share-box {
	position: absolute;
	right: 0px;
	top: 20px;
}
.post-header .share-call {
	text-align: center;
	width: 50px;
}
.post-header .share-call i {
	font-size: 20px;
	color: #222;
}
.post-header .share-call i:hover {
	cursor: pointer;
	opacity: 0.7;
}
.post-header .share {
	background: #222;
	width: 55px;
	padding: 10px 0 3px;
	display: none;
	position: absolute;
	right: 0;
	top: 30px;
}
#toc_container {
	width: 100%;
	box-sizing: border-box;
	padding: 30px;
	background: #eee;
	border: 1px solid #dddddd;
}
#toc_container .toc_title {
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 20px;
}


/*--------------------------------
ページ送り
---------------------------------*/
.pagenavi {

	text-align: center;
}
.pagenavi .box-content {
	width: auto;
}
ul.page-numbers {
	padding: 40px 150px 100px;
	position: relative;
	text-align: center;
	border-top: 1px solid #dddddd;
}
ul.page-numbers > li {
	display: inline-block;
	letter-spacing: normal;
	margin: 0 10px;
	vertical-align: top;
}
ul.page-numbers > li > a ,
ul.page-numbers > li > span {
	text-align: center;
	display: inline-block;

	box-sizing: border-box;
	font-size: 18px;
	color: #222222;
	padding: 10px 0px 10px;

}
ul.page-numbers > li:first-child > a {

}
ul.page-numbers > li:last-child > a {

}
ul.page-numbers > li > a:hover {
	z-index: 2;
	text-decoration: none;
	transition: none;

}
ul.page-numbers .current{

	cursor: default;
	z-index: 2;
	color: #888888;

}
.page-numbers.next {
	display: block;
	color: white;
	text-align: center;
	font-size: 14px;
	background-color: #1c1a8a;
	line-height: 36px;
	height: 40px;
	border-radius: 30px;
	border: 2px solid #1c1a8a;
	box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 46px;
	width: 100px;
	padding: 0;

}
.page-numbers.next:hover {
	color: #1c1a8a;
	background: white;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	text-decoration: none;
}
/* .page-numbers.next:after {
	content: "";
	display: inline-block;
	background: url(../img/nav-next.png) center center no-repeat;
	background-size: contain;
	width: 31px;
	height: 6px;
	vertical-align: middle;
	margin-left: 25px;
} */
.page-numbers.next:hover {

}
.page-numbers.prev {
	display: block;
	color: white;
	text-align: center;
	font-size: 14px;
	background-color: #1c1a8a;
	line-height: 36px;
	height: 40px;
	border-radius: 30px;
	border: 2px solid #1c1a8a;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 46px;
	width: 100px;
	padding: 0;
}
.page-numbers.prev:hover {

}
/* .page-numbers.prev:before {
	content: "";
	display: inline-block;
	background: url(../img/nav-prev.png) center center no-repeat;
	background-size: contain;
	width: 31px;
	height: 6px;
	vertical-align: middle;
	margin-right: 25px;
} */
.page-numbers.prev:hover {

}

/*--------------------------------
前の記事・次の記事
---------------------------------*/
.prev-next {
	margin: 50px auto;
	padding: 50px 0;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	position: relative;
}
.prev-next {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.prev-next .prev {

	position: absolute;
	left: 0;
	top: 50px;
	width: 180px;
}
.prev-next .prev a {
	display: block;
	text-align: center;
	font-weight: 500;
	color: #0a66a8;
	line-height: 50px;
	border: 1px solid #0a66a8;
	background: url(../img/prev.png) 10px center no-repeat;
	background-size: 7px 12px;
	letter-spacing: 3px;
}
.prev-next .home {
	width: 180px;
	margin: 0 auto;
}
.prev-next .home a {
	display: block;
	text-align: center;
	font-weight: 500;
	color: #0a66a8;
	line-height: 50px;
	border: 1px solid #0a66a8;
}
.prev-next .next {
	position: absolute;
	right: 0;
	top: 50px;
	width: 180px;
}
.prev-next .next a {
	border: 1px solid #0a66a8;
	display: block;
	text-align: center;
	font-weight: 500;
	color: #0a66a8;
	line-height: 50px;
	background: url(../img/next.png) right 10px center no-repeat;
	background-size: 7px 12px;
	letter-spacing: 3px;
}
.prev-next a:hover {
	text-decoration: none;
	background: #0a66a8;
	color: white;
}
.prev-next .prev a:hover {
	background: #0a66a8 url(../img/prev-active.png) 10px center no-repeat;
	background-size: 7px 12px;
}
.prev-next .next a:hover {
	background: #0a66a8 url(../img/next-active.png) right 10px center no-repeat;
	background-size: 7px 12px;
}

.post-prev-next {
	height: auto;
	min-height: 36px;
	line-height: 1.5em;
	border-top: 1px solid #dddddd;
	margin: 70px auto 70px;
	padding: 70px 0 0;
	max-width: 100%;
	position: relative;
}
.post-prev-next .prev {
	box-sizing: border-box;
	display: block;
	font-size: 16px;
	border: 1px solid #222;
	text-align: center;
	width: 120px;
	line-height: 36px;
	position: absolute;
	left: 0;
	top: 70px;
}
.post-prev-next .next {
	box-sizing: border-box;
	display: block;
	font-size: 16px;
	border: 1px solid #222;
	text-align: center;
	width: 120px;
	line-height: 36px;
	position: absolute;
	right: 0;
	top: 70px;
}
.post-prev-next .home {
	box-sizing: border-box;
	display: block;
	font-size: 16px;
	border: 1px solid #222;
	text-align: center;
	width: 300px;
	line-height: 36px;
	margin: 0 auto;
}
.post-prev-next .home a {
	display: block;
}
.yarpp-related {
	margin: 0 !important;
}

/*
*
*
  POST CONTENT
*
*
*/
.post {
	word-break: break-all;
}
.post p {
	margin-bottom: 30px;
}
.post p.big {
	font-weight: bold;
	font-size: 1.2em;
}
.post p strong {
	font-weight: bold;
}
.post p a {
	color: #222;
}
	/*
.post h4 {
	padding: 10px 15px;
	border-left: 4px solid #1d2088;
}

.post h4 {
    background-color: #f4f4f4;
    padding: 10px 20px;
    border-bottom: 1px dotted #1d2088;
}
*/

.post img.alignnone {
	display: block;
	margin: 30px auto;
}
.post hr {
	margin: 50px auto;
}

.box-who {
	position: relative;
	background: white;
	border: 1px solid #dddddd;
	border-radius: 6px;
	margin-bottom: 20px;
	padding: 15px 15px 15px 140px;
	min-height: 100px;
	box-sizing: border-box;
}
.box-who .who-pic {
	position: absolute;
	left: 30px;
	bottom: 0;
	width: 100px;
}
.box-who .who-pic img {
	margin: 0;
}
.box-who p {
	margin-bottom: 0;
}

.box-who-2 {
	position: relative;
	background: white;
	border: 1px solid #dddddd;
	border-radius: 6px;
	margin-bottom: 20px;
	padding: 15px 15px 15px 15px;
}
.box-who-2:last-child {
	margin-bottom: 0;
}
.box-who-2 p {
	margin-bottom: 0;
	font-size: 18px;
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	margin-bottom: 0px;
}

blockquote {
	position: relative;
	padding: 25px 40px;
	box-sizing: border-box;
	margin: 25px auto;
	background: #f6f6f6;
}

/* 2026/09/20: blockquote:before / blockquote:after を削除。
   参照していた ../img/blockquote-before.png ・ blockquote-after.png が
   テーマ内に存在せず（候補9パスすべて404）、装飾は元から描画されていなかった。
   blockquote 本体・blockquote a・.post blockquote p・blockquote p:last-child は変更なし。
   ※ module_post_sp.css にも同じ記述があり、同日削除済み。 */

blockquote a {
	font-size: 12px;
	color: #888888 !important;
	word-break: break-all;
}
.post blockquote p {
	margin-bottom: 10px;
}
blockquote p:last-child {
	margin-bottom: 0;
	font-size: 12px;
	color: #888888;
}

.table-1 {
	width: 100%;
	table-layout: fixed;
	margin: 25px auto;
}
.table-1 tr:first-child th {

}
.table-1 tr:first-child th:first-child {
	background: #f2f2f2;
}
.table-1 th {
	background: #f6f6f6;
	border: 1px solid #dddddd;
	padding: 6px 10px;
	text-align: center;
	font-weight: normal;

}
.table-1 td {
	border: 1px solid #dddddd;
	padding: 6px 10px;
	text-align: center;
}

.pic-content {
	position: relative;
	padding-left: 180px;
	min-height: 150px;
}
.pic-content .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 159px;
}
.pic-content .pic img {
	margin-top: 0;
}

.bn-post {
	position: relative;
	background: #fafafa;
	height: 210px;
}
.bn-post .bn-post-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.bn-post .bn-post-link:hover {
	background: rgba(255,255,255,0.4);
}
.bn-post .bn-post-pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 270px;
	height: 210px;
}

.bn-post .bn-post-pic img {
	margin: 0;
}
.bn-post .bn-post-content {
	padding: 30px 30px 30px 300px;
}
.bn-post .bn-post-content .bn-post-title {
	font-size: 20px;
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	margin-bottom: 20px;
	background: url(../img/angle-status-active.png) 95% 30px no-repeat;
	background-size: 51px 6px;
}

.post-bottom {
	background: white;
	margin-top: 60px;
}
.box-point {
	background: #f6f6f6;
	margin: 20px auto;
	padding: 30px 30px;
	position: relative;
}
.box-point:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	background: url(../img/box-point.png) 0 0 no-repeat;
	background-size: contain;
	width: 64px;
	height: 64px;
}
.box-point p:last-child {
	margin-bottom: 0;
}
.post-single h2 {
	text-align: left;
	font-size: 22px;
	font-weight: bold;
}
.post-single p+h2{
	margin-top: 60px;
}
.post-single h2:after {
	content: "";
	display: block;
	width: 125px;
	height: 5px;
	background: #1d2088;
	margin: 10px 5px 25px;
	}

.post-single h3 {
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-left: 20px;
	}
	
.post-single p+h3{
	margin-top: 20px;
	margin-bottom: 15px;
}

.post-single h3::after {
	content: "";
	position: absolute;
	padding: 15px 15px 15px 15px;
	border-left: 5px solid #1d2088;
	background: transparent;
	left: 0;
	top: 0;
	}

.post h4 {
    padding: 10px 20px;
    border-bottom: 1px dotted #1d2088;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

/* 20241125 テーブル全体のスタイル */
/* テーブル全体のスタイル */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
  border: 1px solid #ddd; /* 外枠の線 */
}

.custom-table thead {
  background-color: #294774; /* ヘッダー背景色 */
  color: white;
}

.custom-table th,
.custom-table td {
  padding: 12px 15px;
  border: 1px solid #ddd; /* セル間の線 */
}

.custom-table thead th {
  text-align: center;
  font-weight: bold;
}

.custom-table tbody tr:nth-child(even) {
  background-color: #f9f9f9; /* 偶数行の背景色 */
}

.custom-table tbody tr:hover {
  background-color: #f1f1f1; /* ホバー時の背景色 */
}

/*--- 20250728 新テーブル用 ---*/
.service-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0; /* 上下の余白 */
    font-size: 16px;
    text-align: left;
    border: 1px solid #ddd; /* テーブル全体の外枠 */
}

.service-comparison-table thead {
    background-color: #294774; /* ヘッダー背景色 */
    color: white;
}

.service-comparison-table th,
.service-comparison-table td {
    padding: 12px 15px; /* セルの内側余白 */
    border: 1px solid #ddd; /* セル間の線 */
    vertical-align: top; /* セル内容が上揃えになるように */
}

.service-comparison-table thead th {
    text-align: center;
    font-weight: bold;
}

.service-comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* 偶数行の背景色 */
}

.service-comparison-table tbody tr:hover {
    background-color: #f1f1f1; /* ホバー時の背景色 */
}

/* サービス名セルを太字にするなど、見やすくするための追加スタイル */
.service-name {
    font-weight: bold;
    background-color: #e6e6e6; /* サービス名セルの背景色 */
}

/*--- 20250703 投稿者情報コンテナ ---*/
.post-author-details {
    display: flex !important; /* アバターとテキスト情報を横並びにする */
    align-items: center !important; /* ★変更: 垂直方向の中央揃えにする */
    margin-top: 20px !important; /* 記事タイトルとの間にスペース */
    margin-bottom: 20px !important; /* 記事本文との間にスペース */
    padding: 0 !important; /* 内側の余白を削除 */
    border: none !important; /* 枠線を削除 */
    background-color: transparent !important; /* 背景色を透明にする */
}

/*--- 投稿者アバターのラッパー ---*/
.author-avatar-wrap {
    margin-right: 15px !important; /* 右側の余白 */
    flex-shrink: 0 !important; /* 縮小させない */
}

/*--- 投稿者アバター画像 ---*/
.author-avatar {
    border-radius: 50% !important; /* 画像を円形にする */
    width: 60px !important; /* 幅を60pxに固定 */
    height: 60px !important; /* 高さを60pxに固定 */
    object-fit: cover !important; /* 画像がはみ出さないようにトリミング */
    border: none !important; /* アバターの境界線を削除 */
}

/*--- 投稿者テキスト情報のコンテナ ---*/
/* アバターと同じ高さに収まるように調整 */
.author-text-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* 垂直方向の中央揃え */
    line-height: 1 !important; /* 行の高さ */
}

/*--- 投稿者の役職（タイトル）の表示スタイル ---*/
.author-title {
    font-size: 0.8em !important; /* フォントサイズを小さく */
    color: #666 !important; /* 文字色 */
    margin: 0 !important; /* マージンをリセット */
    white-space: nowrap !important; /* テキストの折り返しを防ぐ */
    overflow: hidden !important; /* はみ出したテキストを隠す */
    text-overflow: ellipsis !important; /* はみ出したテキストを三点リーダーで表示 */
    margin-bottom: -3px !important; /* **追加・修正**: 氏名との間に少しスペース */
}

/*--- 投稿者名と代名詞のコンテナ ---*/
.author-name-and-pronoun {
    display: flex !important; /* 名前と代名詞を横並びにする */
    align-items: center !important; /* 垂直方向の中央揃え */
    margin-top: -3px !important; /* ★追加調整案: こちらをマイナスにしても良い */
    margin-bottom: 0 !important; 
    flex-wrap: wrap !important; /* **修正**: 要素が収まらない場合に折り返す (important追加) */
}

/*--- LinkedInアイコンのスタイル ---*/
.linkedin-icon-block { /* 追加: 新しいクラス */
    margin-top: -3px !important; /* 氏名・代名詞行との間にスペース */
    /* アバターと高さを揃えるために左端に配置 */
    position: relative !important; /* 親要素 .author-text-info が flex-direction: column なので調整 */
    left: 0 !important; /* 左端に揃える */
}

.linkedin-icon-block a { /* 追加: 新しいクラス */
    display: inline-block !important; /* リンク自体をインラインブロック要素にする */
    text-decoration: none !important; /* 下線なし */
}

.linkedin-icon-block a:hover { /* 追加: 新しいクラス */
    opacity: 0.8 !important; /* ホバー時の透明度 */
}

.linkedin-icon-block svg { /* 追加: 新しいクラス */
    display: block !important; /* SVGをブロック要素として扱う */
    width: 20px !important; /* 写真のサイズ (60px) に合わせて調整 */
    height: 20px !important; /* 写真のサイズ (60px) に合わせて調整 */
    margin-left: 0 !important; /* 左揃えにするためマージンをリセット */
}

/*--- 投稿者名の表示スタイル ---*/
.author-name {
    font-weight: bold !important; /* 太字 */
    font-size: 1.0em !important; /* フォントサイズ */
    margin-right: 5px !important; /* 右側の余白 */
    white-space: nowrap !important; /* テキストの折り返しを防ぐ */
    overflow: hidden !important; /* はみ出したテキストを隠す */
    text-overflow: ellipsis !important; /* はみ出したテキストを三点リーダーで表示 */
}

/*--- 投稿者名リンクのスタイル (非表示) ---*/
/* ライターのリンクを無効化 */
.author-name a {
    color: inherit !important; /* 親要素の色を継承 */
    text-decoration: none !important; /* 下線をなくす */
    pointer-events: none !important; /* クリックを無効にする */
    cursor: default !important; /* カーソルを通常に戻す */
}

.author-name a:hover {
    text-decoration: none !important; /* ホバー時の下線も表示しない */
}

/*--- 投稿者の代名詞（エバンジェリストなど）の表示スタイル ---*/
.author-pronoun {
    font-size: 0.8em !important; /* フォントサイズを小さく */
    color: #888 !important; /* 文字色 */
    margin: 0 !important; /* マージンをリセット */
    white-space: nowrap !important; /* テキストの折り返しを防ぐ */
    overflow: hidden !important; /* はみ出したテキストを隠す */
    text-overflow: ellipsis !important; /* はみ出したテキストを三点リーダーで表示 */
}

/*--- Sidebar Bannersのロゴ ---*/
.l-sidebar .banner-container {
    text-align: center;
}

.l-sidebar .side-banner-item {
    display: block; /* 縦並びにするため、ブロック要素に変更 */
    margin: 0 auto 20px; /* 上下左右の余白を調整。中央揃えにして下側に20pxの余白を追加 */
}

.l-sidebar .side-banner-item img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}

/*--- 展示会お知らせテーブル ---*/
.exhibition-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.exhibition-table th,
.exhibition-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

/* ヘッダーセルのスタイル */
.exhibition-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #555;
    white-space: nowrap;
    width: 20%; /* 幅を少し広げてバランスを調整 */
}

/* ボディセルのスタイル */
.exhibition-table td {
    background-color: #ffffff;
    line-height: 1.6;
}

/* 最後の行のボーダーを削除 */
.exhibition-table tr:last-child th,
.exhibition-table tr:last-child td {
    border-bottom: none;
}

/* ulとliのスタイル */
.exhibition-table ul {
    margin: 0;
    padding-left: 20px;
}

.exhibition-table li {
    margin-bottom: 8px;
}

/* 見出しのスタイル */
.exhibition-heading {
    border-left: 5px solid #007bff;
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 24px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #333;
}

}/* 738pixel以上に適用の閉じタグ */

/* ===== 4/6: module_post_sp.css ===== */
/***************************
*
* 投稿・カテゴリーページ
* ★ページ中身用★
*
**************************/

@media (max-width: 768px) {

	/*--------------------------------
	カテゴリ
	---------------------------------*/
	.page-header-cat {
	  position: relative;
	}
	.page-header-title-en {
	  font-size: 25px;
	}
	.page-header-title-en:first-letter {
	  text-transform: uppercase;
	}
	.page-header-title {
	  /* font-size: 30px;
	  text-align: left;
	  font-weight: 500;
	  width: 100%; */
	}
	.page-header-cat .page-header-title {
	  font-size: 15px;
	  margin-top: 10px;
	  width: auto;
	}
  
	.cat-bottom {
	  background-color: #f4f4f4;
	  padding: 30px 0 10px 15px;
	}
	.cat-bottom .main-pickup {
	  padding: 0;
	  margin-bottom: 30px;
	}
  
	.cat-cat {
	  padding: 30px 15px 30px;
	}
	.cat-cat .box-content {
	  width: 100%;
	  margin: 0 auto;
	}
	.cat-cat .cat-cat-header {
	  position: relative;
	  margin-bottom: 15px;
	}
	.cat-cat .cat-cat-title {
	  font-size: 25px;
	  font-weight: 500;
	  color: #222222;
	  display: inline-block;
	}
	.cat-cat .cat-cat-title-caption {
	  font-size: 13px;
	  color: #222222;
	  display: inline-block;
	  margin-left: 10px;
	}
	.list-cat {
	  display: -webkit-flex;
	  display: flex;
	  -webkit-justify-content: center;
	  justify-content: center;
	  flex-wrap: wrap;
	}
	.list-cat li {
	  width: 33%;
	  position: relative;
	  margin-bottom: 15px;
	}
	.list-cat li .cat-link {
	  position: absolute;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  z-index: 3;
	}
	.list-cat li .cat-link:hover + .cat-pic img {
	  opacity: 0.7;
	}
	.list-cat .cat-pic {
	  width: 100%;
	}
	.list-cat .cat-pic img {}
	.list-cat .cat-content {
	  border-right: 1px solid #d7d7d7;
	  margin: 10px auto 10px;
	}
	.list-cat .cat-title {
	  font-size: 18px;
	  font-weight: 500;
	  text-align: center;
	}
	.list-cat .cat-title-caption {
	  font-size: 11px;
	  text-align: center;
	  margin-top: 10px;
	}
	.list-cat li:nth-child(3n) .cat-content,
	.list-cat li:nth-child(5n) .cat-content {
	  border-right: none;
	}
  
	/*--------------------------------
	シングル
	---------------------------------*/
	.post-mov {
	  background-color: #333333;
	  position: relative;
	  padding: 30px 15px 30px;
	  margin: -15px;
	}
	.post-mov-box {
	  position: relative;
	  width: 100%;
	  height: 0;
	  padding-top: 56.25%;
	}
	.post-mov-box iframe {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	}
  
	.page-header.page-header-post {
	  height: 430px;
	}
	.post-header {
	  position: relative;
	  margin-bottom: 30px;
	}
	.post-header .new {
	  position: absolute;
	  right: -40px;
	  top: -40px;
	  background: url(../img/new.png) center center no-repeat;
	  background-size: contain;
	  width: 50px;
	  height: 50px;
	}
	.post-info {}
	.post-info {
	  margin-bottom: 15px;
	}
	.post-info .post-cat {
	  position: relative;
	  z-index: 4;
	  display: inline-block;
	}
	.post-info .post-cat a {
	  font-size: 15px;
	  color: #222;
	}
	.post-info .post-time {
	  font-size: 15px;
	  color: #222;
	  display: inline-block;
	}
	.post-info .post-time:before {
	  content: "|";
	  color: #cccccc;
	  display: inline-block;
	  margin-left: 5px;
	  margin-right: 5px;
	}
	.post-single {
	  line-height: 2em;
	}
	.page-time {
	  display: inline-block;
	  margin-right: 40px;
	  font-size: 16px;
	  color: #222222;
	}
	.post-tags {
	  display: inline-block;
	}
	.post-tags a {
	  color: #222;
	  display: inline-block;
	  border-bottom: 1px solid #222;
	  margin-right: 40px;
	}
	.post-tags a:before {
	  content: "# ";
	}
	.post-tags a:hover {
	  border-bottom: 1px solid white;
	}
	.post-title {
	  font-size: 20px;
	  color: #222222;
	  font-weight: 500;
	  margin-top: 55px;
	  margin-bottom: 30px;
	  line-height: 1.666em;
	  padding-right: 50px;
	}
	.post-header .share-box {
	  position: absolute;
	  right: 0px;
	  top: 20px;
	}
	.post-header .share-call {
	  text-align: center;
	  width: 50px;
	}
	.post-header .share-call i {
	  font-size: 20px;
	  color: #222;
	}
	.post-header .share-call i:hover {
	  cursor: pointer;
	  opacity: 0.7;
	}
	.post-header .share {
	  background: #222;
	  width: 55px;
	  padding: 10px 0 3px;
	  display: none;
	  position: absolute;
	  right: 0;
	  top: 30px;
	}
	#toc_container {
	  width: 100%;
	  box-sizing: border-box;
	  padding: 30px;
	  background: #eee;
	  border: 1px solid #dddddd;
	}
	#toc_container .toc_title {
	  font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	  font-size: 20px;
	}
  
	/*--------------------------------
	ページ送り
	---------------------------------*/
	.pagenavi {
	  text-align: center;
	}
	.pagenavi .box-content {
	  width: auto;
	}
	ul.page-numbers {
	  padding: 40px 15px 40px;
	  position: relative;
	  text-align: center;
	}
	ul.page-numbers > li {
	  display: inline-block;
	  letter-spacing: normal;
	  margin: 0 5px;
	  vertical-align: top;
	}
	ul.page-numbers > li > a,
	ul.page-numbers > li > span {
	  text-align: center;
	  display: inline-block;
	  box-sizing: border-box;
	  font-size: 15px;
	  color: #222222;
	  padding: 10px 0px 10px;
	  border-bottom: 1px solid rgba(34, 34, 34, 0);
	}
	ul.page-numbers > li:first-child > a {}
	ul.page-numbers > li:last-child > a {}
	ul.page-numbers > li > a:hover {
	  z-index: 2;
	  text-decoration: none;
	  transition: none;
	}
	ul.page-numbers .current {
	  cursor: default;
	  z-index: 2;
	  color: #888888;
	}
	.page-numbers.next {
	  display: block;
	  color: white;
	  text-align: center;
	  font-size: 14px;
	  background-color: #1c1a8a;
	  line-height: 36px;
	  height: 40px;
	  border-radius: 30px;
	  border: 2px solid #1c1a8a;
	  box-sizing: border-box;
	  position: absolute;
	  right: 0;
	  top: 76px;
	  width: 100px;
	  padding: 0;
	}
	.page-numbers.next:hover {
	  color: #1c1a8a;
	  background: white;
	  -webkit-transition: .3s ease-in-out;
	  transition: .3s ease-in-out;
	  text-decoration: none;
	}
	.page-numbers.prev {
	  display: block;
	  color: white;
	  text-align: center;
	  font-size: 14px;
	  background-color: #1c1a8a;
	  line-height: 36px;
	  height: 40px;
	  border-radius: 30px;
	  border: 2px solid #1c1a8a;
	  box-sizing: border-box;
	  position: absolute;
	  left: 0;
	  top: 76px;
	  width: 100px;
	  padding: 0;
	}
	.page-numbers.prev:hover {}
  
	/*--------------------------------
	前の記事・次の記事
	---------------------------------*/
	.prev-next {
	  margin: 50px auto;
	  padding: 50px 0;
	  border-top: 1px solid #eeeeee;
	  border-bottom: 1px solid #eeeeee;
	  position: relative;
	}
	.prev-next {
	  display: -webkit-flex;
	  display: flex;
	  -webkit-justify-content: space-between;
	  justify-content: space-between;
	}
	.prev-next .prev {
	  position: absolute;
	  left: 0;
	  top: 50px;
	  width: 180px;
	}
	.prev-next .prev a {
	  display: block;
	  text-align: center;
	  font-weight: 500;
	  color: #0a66a8;
	  line-height: 50px;
	  border: 1px solid #0a66a8;
	  background: url(../img/prev.png) 10px center no-repeat;
	  background-size: 7px 12px;
	  letter-spacing: 3px;
	}
	.prev-next .home {
	  width: 180px;
	  margin: 0 auto;
	}
	.prev-next .home a {
	  display: block;
	  text-align: center;
	  font-weight: 500;
	  color: #0a66a8;
	  line-height: 50px;
	  border: 1px solid #0a66a8;
	}
	.prev-next .next {
	  position: absolute;
	  right: 0;
	  top: 50px;
	  width: 180px;
	}
	.prev-next .next a {
	  border: 1px solid #0a66a8;
	  display: block;
	  text-align: center;
	  font-weight: 500;
	  color: #0a66a8;
	  line-height: 50px;
	  background: url(../img/next.png) right 10px center no-repeat;
	  background-size: 7px 12px;
	  letter-spacing: 3px;
	}
	.prev-next a:hover {
	  text-decoration: none;
	  background: #0a66a8;
	  color: white;
	}
	.prev-next .prev a:hover {
	  background: #0a66a8 url(../img/prev-active.png) 10px center no-repeat;
	  background-size: 7px 12px;
	}
	.prev-next .next a:hover {
	  background: #0a66a8 url(../img/next-active.png) right 10px center no-repeat;
	  background-size: 7px 12px;
	}
  
	.post-prev-next {
	  height: auto;
	  min-height: 36px;
	  line-height: 1.5em;
	  border-top: 1px solid #dddddd;
	  margin: 70px auto 70px;
	  padding: 70px 0 0;
	  max-width: 100%;
	  position: relative;
	}
	.post-prev-next .prev {
	  box-sizing: border-box;
	  display: block;
	  font-size: 16px;
	  border: 1px solid #222;
	  text-align: center;
	  width: 120px;
	  line-height: 36px;
	  position: absolute;
	  left: 0;
	  top: 70px;
	}
	.post-prev-next .next {
	  box-sizing: border-box;
	  display: block;
	  font-size: 16px;
	  border: 1px solid #222;
	  text-align: center;
	  width: 120px;
	  line-height: 36px;
	  position: absolute;
	  right: 0;
	  top: 70px;
	}
	.post-prev-next .home {
	  box-sizing: border-box;
	  display: block;
	  font-size: 16px;
	  border: 1px solid #222;
	  text-align: center;
	  width: 300px;
	  line-height: 36px;
	  margin: 0 auto;
	}
	.post-prev-next .home a {
	  display: block;
	}
	.yarpp-related {
	  margin: 0 !important;
	}
  
	/*
	*
	* POST CONTENT
	*
	*/
	.post {
	  word-break: break-all;
	}
	.post p {
	  margin-bottom: 30px;
	}
	.post p.big {
	  font-weight: bold;
	  font-size: 1.2em;
	}
	.post p strong {
	  font-weight: bold;
	}
	.post p a {
	  color: #222;
	}
	.post h4 {
	  background-color: #f4f4f4;
	  padding: 10px 20px;
	  border-bottom: 2px dotted #1d2088;
	}
	.post img.alignnone {
	  display: block;
	  margin: 30px auto;
	}
	.post hr {
	  margin: 50px auto;
	}
  
	.box-who {
	  position: relative;
	  background: white;
	  border: 1px solid #dddddd;
	  border-radius: 6px;
	  margin-bottom: 20px;
	  padding: 15px 15px 15px 140px;
	}
	.box-who .who-pic {
	  position: absolute;
	  left: 30px;
	  bottom: 0;
	  width: 100px;
	}
	.box-who .who-pic img {
	  margin: 0;
	}
	.box-who p {
	  margin-bottom: 0;
	}
	.box-who-2 {
	  position: relative;
	  background: white;
	  border: 1px solid #dddddd;
	  border-radius: 6px;
	  margin-bottom: 20px;
	  padding: 15px 15px 15px 15px;
	}
	.box-who-2:last-child {
	  margin-bottom: 0;
	}
	.box-who-2 p {
	  margin-bottom: 0;
	  font-size: 17px;
	  font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	}
	blockquote {
	  position: relative;
	  padding: 28px 15px;
	  box-sizing: border-box;
	  margin: 25px auto;
	  background: #f6f6f6;
	}
	/* 未使用CSS/404対応（2026/09/20削除）
	   背景: blockquote:before / blockquote:after が装飾用に
	     ../img/blockquote-before.png と ../img/blockquote-after.png を参照していたが、
	     両ファイルはテーマ内に存在せず（9パターンのパスを実測して全て404）、
	     引用ブロックのある記事を開くたびに404が2件発生していた。
	     画像が無いため装飾自体は元から表示されておらず、見た目への影響は無い。
	   内容: 空のままだった blockquote:before / blockquote:after のルールごと削除。
	     装飾を復活させる場合は、27x21px の引用符画像を themes/primo/img/ に置いた上で
	     このブロックを戻すこと。
	   日付: 2026/09/20 */
	blockquote a {
	  font-size: 12px;
	  color: #888888 !important;
	  word-break: break-all;
	}
	.post blockquote p {
	  margin-bottom: 10px;
	}
	blockquote p:last-child {
	  margin-bottom: 0;
	  font-size: 12px;
	  color: #888888;
	  line-height: 1.3em;
	}
  
	.table-1 {
	  width: 100%;
	  table-layout: fixed;
	  margin: 25px auto;
	}
	.table-1 th {
	  background: #f6f6f6;
	  border: 1px solid #dddddd;
	  padding: 6px 10px;
	  text-align: center;
	  font-weight: normal;
	}
	.table-1 td {
	  border: 1px solid #dddddd;
	  padding: 6px 10px;
	  text-align: center;
	}
  
	.pic-content {
	  position: relative;
	}
	.pic-content .pic {
	  margin: 0 auto 15px;
	  display: block;
	  width: 159px;
	}
	.pic-content .pic img {
	  margin-top: 0;
	}
  
	.bn-post {
	  position: relative;
	  background: #fafafa;
	}
	.bn-post .bn-post-link {
	  position: absolute;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  z-index: 5;
	}
	.bn-post .bn-post-link:hover {
	  background: rgba(255, 255, 255, 0.4);
	}
	.bn-post .bn-post-pic {
	  width: 100%;
	}
	.bn-post .bn-post-pic img {
	  margin: 0;
	}
	.bn-post .bn-post-content {
	  padding: 15px;
	}
	.bn-post .bn-post-content .bn-post-title {
	  font-size: 20px;
	  font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	  margin-bottom: 20px;
	  background: url(../img/angle-status-active.png) 95% 30px no-repeat;
	  background-size: 51px 6px;
	}
	.post .bn-post .bn-post-content p:last-child {
	  margin-bottom: 0;
	}
	.post-bottom {
	  background: white;
	  margin-top: 60px;
	}
	.box-point {
	  background: #f6f6f6;
	  margin: 20px auto;
	  padding: 50px 15px 15px;
	  position: relative;
	}
	.box-point:after {
	  content: "";
	  display: block;
	  position: absolute;
	  right: 0;
	  top: 0;
	  background: url(../img/box-point.png) 0 0 no-repeat;
	  background-size: contain;
	  width: 64px;
	  height: 64px;
	}
	.box-point p:last-child {
	  margin-bottom: 0;
	}
  
	.post-single h2 {
	  text-align: left;
	  font-size: 22px;
	  font-weight: bold;
	}
	.post-single p+h2 {
	  margin-top: 60px;
	}
	.post-single h2:after {
	  content: "";
	  display: block;
	  width: 125px;
	  height: 5px;
	  background: #1d2088;
	  margin: 10px 5px 25px;
	}
	.post-single h3 {
	  text-align: left;
	  font-size: 16px;
	  font-weight: bold;
	  position: relative;
	  padding-left: 20px;
	}
	.post-single p+h3 {
	  margin-top: 20px;
	  margin-bottom: 15px;
	}
	.post-single h3::after {
	  content: "";
	  position: absolute;
	  padding: 15px;
	  border-left: 5px solid #1d2088;
	  background: transparent;
	  left: 0;
	  top: 0;
	}
  
	/* 20241125 テーブル全体のスタイル */
	.custom-table {
	  border: none;
	}
	.custom-table thead {
	  display: none;
	}
	.custom-table tbody tr {
	  display: block;
	  margin-bottom: 15px;
	  border: 1px solid #ddd;
	  background-color: #fff;
	  border-radius: 8px;
	  overflow: hidden;
	}
	.custom-table tbody tr:nth-child(even) {
	  background-color: #f9f9f9;
	}
	.custom-table td {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 10px;
	  border-bottom: 1px solid #ddd;
	  position: relative;
	  text-align: left;
	}
	.custom-table td::before {
	  content: attr(data-label);
	  font-weight: bold;
	  background-color: #294774;
	  color: white;
	  padding: 5px 8px;
	  border-radius: 3px;
	  display: inline-block;
	  margin-right: 10px;
	  min-width: 120px;
	  text-align: center;
	}
	.custom-table td:last-child {
	  border-bottom: none;
	}
  
	/* 著者情報ブロック */
	.post-author-details {
	  flex-direction: row !important;
	  align-items: center !important;
	  text-align: left !important;
	  width: 385px !important;
	  max-width: 100% !important;
	  margin-left: auto !important;
	  margin-right: auto !important;
	}
	.author-avatar-wrap {
	  margin-right: 15px !important;
	  margin-bottom: 0 !important;
	}
	.author-text-info {
	  height: auto !important;
	  justify-content: center !important;
	}
	.author-title {
	  white-space: nowrap !important;
	  text-overflow: ellipsis !important;
	  margin-bottom: -3px !important;
	}
	.author-name-and-pronoun {
	  flex-direction: row !important;
	  align-items: center !important;
	  margin-top: -3px !important;
	  flex-wrap: nowrap !important;
	}
	.author-name {
	  margin-right: 5px !important;
	  margin-bottom: 0 !important;
	  white-space: nowrap !important;
	  text-overflow: ellipsis !important;
	}
	.author-pronoun {
	  margin-top: 0 !important;
	  margin-left: 0 !important;
	  white-space: nowrap !important;
	  text-overflow: ellipsis !important;
	}
	.linkedin-icon-block {
	  margin-top: -3px !important;
	  position: relative !important;
	  left: 0 !important;
	}
	.linkedin-icon-block svg {
	  width: 40px !important;
	  height: 40px !important;
	}
	.l-sidebar .side-banner-item {
        width: 100%;
        margin: 0 0 15px 0 !important;
    }
  }

  /* アバターは常に60x60で円形 */
  .post-author-details .author-avatar-wrap .author-avatar {
	border-radius: 50% !important;
	width: 60px !important;
	height: 60px !important;
	object-fit: cover !important;
	border: none !important;
  }

/* ===== 5/6: module_pro.css ===== */
/***************************
 *
 * PRODUCTS
 * ★ページ中身用★
 *
 **************************/
@media all and (min-width: 737px) {
	.pro-title {
		font-weight: bold;
		color: #000000;
		font-size: 28px;
		line-height: 1.111em;
		width: 465px;
		border-bottom: 3px solid #2F3391;
		/*margin-top: 120px;
		margin-bottom: 25px;
		padding-bottom: 10px;
		*/
	}
	
	.list-pros {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-top: 50px;
		margin-bottom: 100px;
	}
	.list-pros > li {
		position: relative;
		background: #fff;
		box-shadow: 5px 5px 15px #ddd;
		border-radius: 20px;
		overflow: hidden;
		transition: 0.3s ease;
		margin-bottom: 30px;
	}
	.list-pros > li:hover {
		opacity: 0.7;
	}
	.list-pros .pros-link {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 3;
	}
	.list-pros .pros-header {
		background: #1A73E8;
		color: white;
		padding: 15px 20px;
	}
	.pros-type {
		display: inline-block;
		font-size: 12px;
		color: white;
		border-radius: 19px;
		background: #EE3F3F;
		letter-spacing: 1px;
		width: 80px;
		text-align: center;
		line-height: 1.3em;
		padding: 2px 0;
	}
	.pros-type.UPDATE {
		background: #EED33F;
	}
	.pros-type.FREE {
		background: #2F3391;
	}
	.list-pros .pros-header .pros-title {
		font-weight: bold;
		color: white;
		font-size: 24px;
	}
	.list-pros .pros-content {
		padding: 20px 20px 20px;
		position: relative;
	}
	.list-pros .pros-content:after {
		content: "";
		display: block;
		background: url(../img/pros-arrow.png) center top no-repeat;
		background-size: contain;
		width: 40px;
		height: 40px;
		margin: 20px auto;
	}
	.list-pros .pros-content-pic {
		margin-left: -20px;
		margin-right: -20px;
	}
	.pros-tags {
		margin-bottom: 20px;
	}
	.pros-tags span {
		display: inline-block;
		color: #2F3391;
		font-size: 10px;
		border: 1px solid #2F3391;
		line-height: 1.2em;
		padding: 2px 4px;
		margin-right: 3px;
		margin-bottom: 3px;
		border-radius: 4px;
		min-width: 60px;
		text-align: center;
	}
	.list-pros .pros-ex {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
		overflow: hidden;
	}
	
	/*
	DETAIL
	*/
	.pro-header {
		position: relative;
		display: flex;
		margin-top: 80px;
	}
	.pro-header .pro-header-l {
		background: #2F3391;
		width: 65%;
		box-sizing: border-box;
		padding: 100px 5%;
		display: flex;
		align-items: column;
		flex-direction: column;
		justify-content: center;
	}
	.pro-header .pro-header-cat {
		margin-bottom: 20px;
	}
	.pro-header .pro-header-cat span {
		background: #fff;
		display: inline-block;
		color: #707071;
		font-size: 16px;
		border-radius: 38px;
		padding: 5px 15px;
	}
	.pro-header .pro-header-title {
		font-weight: bold;
		font-size: 40px;
		color: white;
	}
	.pro-header .pro-header-title .pros-type {
		vertical-align: middle;
	}
	.pro-header .pro-header-title .pros-type.FREE {
		border: 1px solid white;
	}
	.pro-header .pros-tags {
		margin-top: 20px;
	}
	.pro-header .pros-tags span {
		color: white;
		border: 1px solid white;
	}
	.pro-header .pro-header-r {
		width: 35%;
		display: flex;
		align-items: column;
		flex-direction: column;
		justify-content: center;
		background: #fff;
	}
	.pro-header .pro-header-r img {
		transform: scale(0.7);
		transform-origin: center center;
	}
	
	.l-page-pro .box-content {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding-top: 100px;
		padding-left: 0;
		padding-right: 0;
	}
	.l-page-pro .box-content .pro-sidebar {
		display: block;
		width: 270px;
		position: sticky;
		background: #fff;
		box-shadow: 5px 5px 15px #ddd;
		left: 0;
		top: 100px;
	}
	.l-page-pro .box-content .pro-sidebar li {
		position: relative;
	}
	.l-page-pro .box-content .pro-sidebar li a {
		display: block;
		color: #2F3391;
		font-size: 20px;
		font-weight: bold;
		padding: 20px;
		position: relative;
		padding-left: 55px;
	}
	.l-page-pro .box-content .pro-sidebar li a:before {
		content: "";
		display: block;
		position: absolute;
		left: 20px;
		top: 50%;
		margin-top: -11px;
		background: url(../img/ic-anchor.png) 0 0 no-repeat;
		background-size: contain;
		width: 22px;
		height: 22px;
		
	}
	.l-page-pro .box-content .pro-sidebar li:after {
		content: "";
		display: block;
		position: absolute;
		left: 5%;
		bottom: 0px;
		width: 90%;
		height: 1px;
		background: #2F3391;
	}
	.l-page-pro .box-content .pro-sidebar li:hover {
		background: #2F3391;
	}
	.l-page-pro .box-content .pro-sidebar li:hover a {
		color: white;
	}
	.l-page-pro .box-content .pro-sidebar li:hover a:before {
		background: url(../img/ic-anchor-w.png) 0 0 no-repeat;
		background-size: contain;
	}
	.l-page-pro .box-content .pro-sidebar li:hover a:after {
		content: "";
		display: block;
		position: absolute;
		right: -10px;
		top: 50%;
		background: url(../img/side-bullet.png) 0 0 no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}
	.l-page-pro .box-content .pro-sidebar ul:last-child li:after {
		content: none;
	}
	.l-page-pro .box-content .post {
		display: block;
		width: 750px;
		background: #fff;
		position: relative;
		box-shadow: 5px 5px 15px #ddd;
		box-sizing: border-box;
		padding: 40px;
	}
	
	/*
	POST PRO
	*/
	.post-pro {
		position: relative;
	}
	.post-pro h2 {
		font-size: 30px;
		border-bottom: 5px solid #2F3391;
		padding-bottom: 15px;
		margin-top: 70px;
		margin-bottom: 30px;
		color: #2F3391;
	}
	.post-pro h2:first-child {
		margin-top: 0;
	}
	.post-pro h2:after {
		content: none;
	}
	.post-pro .list-feat {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 30px;
		margin: 35px auto 45px;
	}
	.post-pro .list-feat > li {
		position: relative;
	}
	.post-pro .list-feat img {
		display: block;
		margin: 0 auto 15px;
	}
	.post-pro .list-feat strong {
		font-weight: bold;
		text-align: center;
		font-size: 18px;
		color: #2F3391;
	}
	.post-pro.post-single ol.list-feat li:before {
		counter-increment: li_count;
		content: counter(li_count);
		margin-right: 5px;
		color: white;
		display: block;
		font-size: 26px;
		background: #2F3391;
		width: 47px;
		height: 47px;
		line-height: 47px;
		border-radius: 100%;
		text-align: center;
	}
	.post-pro .title-check {
		font-size: 18px;
		font-weight: bold;
	}
	.post-pro .title-check:before {
		content: "";
		display: inline-block;
		background: url(../img/title-check.png) 0 0 no-repeat;
		background-size: contain;
		width: 27px;
		height: 27px;
		position: relative;
		top: 5px;
		margin-right: 5px;
	}
	.post-pro.post-single h3 {
		font-size: 22px;
		margin-top: 50px;
		margin-bottom: 25px;
	}

	.post-pro.post-single table .table-sep {
		text-align: center;
		font-weight: bold;
		color: #2F3391;
		background: #eee;
	}
	.post-pro.post-single table .icon {
		font-weight: bold;
		color: #2F3391;
		font-size: 1.2em;
	}
	.table-wrap {
		overflow-x: auto;
	}
	.table-price {
		width: 100%;
		min-width: 1200px;
	}
	.table-price td {
		position: static;
	}
	.table-price tr td:not(:first-child) {
		text-align: center !important;
	}
	.table-price td:first-child {
		position: sticky;
		  top: 0;
		  left: 0;
		  border-left: none;
		  border-right: none;
		  background: none;
	}
	.table-price td:first-child:before {
		content: "";
		  position: absolute;
		  top: 0px;
		  left: 0px;
		  width: 100%;
		  height: 100%;
		background-color: #e1ebff;
		z-index: -1;
		border-right: 1px solid #1c1a8a;
	}
	.table-price th:nth-child(5) {
		text-align: center;
		color: white;
		background: #1c1a8a;
	}
	
	.post-pro.post-single .list-flow {
		margin: 50px auto;
	}
	.post-pro.post-single .list-flow > li {
		position: relative;
		display: flex;
		justify-content: space-between;
		margin-bottom: 50px;
	}
	.post-pro.post-single .list-flow > li:before {
		content: none;
	}
	.post-pro.post-single .list-flow .flow-content {
		position: relative;
		width: 55%;
	}
	.post-pro.post-single .list-flow .flow-pic {
		position: relative;
		width: 40%;
	}
	.post-pro.post-single .list-flow > li:nth-child(even) .flow-content {
		order: 2;
	}
	.post-pro.post-single .list-flow > li:nth-child(even) .flow-pic {
		order: 1;
	}
	.post-pro.post-single .list-flow .flow-title {
		font-weight: bold;
		font-size: 18px;
		color: #2F3391;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.post-pro.post-single .list-flow .flow-title:before {
		counter-increment: li_count;
		content: "#"counter(li_count);
		margin-right: 5px;
	}
	.post-pro.post-single .list-flow p:not(.flow-title) {
		margin-left: 25px;
		
	}
	.post-pro.post-single .table-price-2 * {
		width: auto !important;
		height: auto !important;
	}
	.post-pro.post-single .table-price-2 td:nth-child(1) {
	width: auto !important;
	}
	.post-pro.post-single .table-price-2 .pr {
		position: static;
		top: auto;
		right: auto;
	}
}

/* 20250824 商品一覧 2列 */
@media all and (min-width: 737px) {

.list-pros {
    display: flex;
    flex-wrap: wrap;       /* 折り返しを許可 */
    margin-top: 50px;
    margin-bottom: 100px;
    gap: 4%;               /* 横と縦のスペースを均等に */
    box-sizing: border-box;
}

.list-pros > li {
    width: 46%;             /* 少し小さくして2列に収める */
    margin-bottom: 30px;    /* 下のスペース */
    box-sizing: border-box; /* パディングやボーダー込みで計算 */
}

}

.pros-ex {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* 文字数制限 */
    overflow: hidden;        /* はみ出た部分は非表示 */
    line-height: 1.4em;
}

/***************************
 *
 * RELATED PRODUCTS
 * ★20250902関連商品用★
 *
 **************************/
@media all and (min-width: 737px) {
    .related-products-section {
        margin-top: 50px;
        margin-bottom: 100px;
    }
    .related-products-section .list-pros {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* 新しい2列表示用のコード */
    .related-products-section .list-pros > li {
        width: 45%;
        margin-right: 5%;
        margin-bottom: 30px;
    }
    .related-products-section .list-pros > li:nth-child(2n) {
        margin-right: 0;
    }

    .related-products-section .pros-link {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
    }
    .related-products-section .pros-header {
        position: relative;
        padding: 10px 15px 5px;
        z-index: 10;
        min-height: 80px;
    }
    .related-products-section .pros-title {
        font-weight: bold;
        font-size: 16px;
        color: #000000;
        line-height: 1.25em;
    }
    .related-products-section .pros-content {
        padding: 0 15px 15px;
        z-index: 10;
    }
    .related-products-section .pros-pic {
        margin-bottom: 10px;
    }
    .related-products-section .pros-pic img {
        width: 100%;
        height: auto;
    }
    .related-products-section .pros-tags {
        margin-top: 5px;
    }
    .related-products-section .pros-tags span {
        display: inline-block;
        font-size: 10px;
        color: #ffffff;
        background: #2F3391;
        border-radius: 5px;
        padding: 3px 5px;
        margin-right: 5px;
    }
    .related-products-section .pros-ex {
        font-size: 14px;
        line-height: 1.5em;
        margin-top: 5px;
    }
}

/* =========================================
       シンプルFAQセクション (PC用)
    ========================================= */
    .faq-simple { max-width: 800px; margin: 60px auto 100px; }
    .faq-simple dl { margin: 0; padding: 0; }
    
    /* 質問 (Q) */
    .faq-simple dt { 
        font-size: 18px; 
        font-weight: bold; 
        color: #333333; 
        padding-left: 35px; 
        position: relative; 
        margin-bottom: 12px; 
        line-height: 1.5; 
    }
    .faq-simple dt::before { 
        content: "Q."; 
        color: #1c1a8a; /* メインブルー */
        position: absolute; 
        left: 0; 
        top: 0; 
        font-family: 'Poppins', sans-serif; 
        font-size: 20px; 
    }
    
    /* 回答 (A) */
    .faq-simple dd { 
        font-size: 15px; 
        color: #636363; 
        padding-left: 35px; 
        position: relative; 
        margin: 0 0 30px 0; 
        line-height: 1.8; 
        border-bottom: 1px solid #eeeeee; 
        padding-bottom: 30px; 
    }
    .faq-simple dd:last-child { 
        border-bottom: none; 
        margin-bottom: 0; 
        padding-bottom: 0; 
    }
    .faq-simple dd::before { 
        content: "A."; 
        color: #ed2856; /* アクセントレッド */
        font-weight: bold; 
        position: absolute; 
        left: 0; 
        top: 0; 
        font-family: 'Poppins', sans-serif; 
        font-size: 20px; 
    }

/* ===== 6/6: module_pro_sp.css ===== */
/***************************
 *
 * PRODUCTS
 * ★ページ中身用★
 *
 **************************/
@media all and (max-width: 736px) {
    .pro-title {
        font-weight: bold;
        color: #000000;
        font-size: 22px;
        line-height: 1.111em;
        border-bottom: 3px solid #2F3391;
        margin-top: 40px;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }

    .list-pros {
        margin-top: 30px;
        margin-bottom: 70px;
    }
    .list-pros > li {
        position: relative;
        background: #fff;
        box-shadow: 5px 5px 15px #ddd;
        margin-bottom: 20px;
        border-radius: 20px;
        overflow: hidden;
        transition: 0.3s ease;
    }
    .list-pros > li:hover {
        opacity: 0.7;
    }
    .list-pros > li:nth-child(3n) {
        margin-right: 0;
    }
    .list-pros .pros-link {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
    }
    .list-pros .pros-header {
        background: #1A73E8;
        color: white;
        padding: 15px 20px;
    }
    .pros-type {
        display: inline-block;
        font-size: 12px;
        color: white;
        border-radius: 19px;
        background: #EE3F3F;
        letter-spacing: 1px;
        width: 80px;
        text-align: center;
        line-height: 1.3em;
        padding: 2px 0;
    }
    .pros-type.UPDATE {
        background: #EED33F;
    }
    .pros-type.FREE {
        background: #2F3391;
    }
    .list-pros .pros-header .pros-title {
        font-weight: bold;
        color: white;
        font-size: 24px;
    }
    .list-pros .pros-content {
        padding: 20px 20px 20px;
        position: relative;
    }
    .list-pros .pros-content:after {
        content: "";
        display: block;
        background: url(../img/pros-arrow.png) center top no-repeat;
        background-size: contain;
        width: 40px;
        height: 40px;
        margin: 20px auto;
    }
    .list-pros .pros-content-pic {
        margin-left: -20px;
        margin-right: -20px;
    }
    .pros-tags {
        margin-bottom: 20px;
    }
    .pros-tags span {
        display: inline-block;
        color: #2F3391;
        font-size: 10px;
        border: 1px solid #2F3391;
        line-height: 1.2em;
        padding: 2px 4px;
        margin-right: 3px;
        margin-bottom: 3px;
        border-radius: 4px;
        min-width: 60px;
        text-align: center;
    }
    .list-pros .pros-ex {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
    }
    
    /*
    DETAIL
    */
    .pro-header {
        position: relative;

        margin-top: 50px;
    }
    .pro-header .pro-header-l {
        background: #2F3391;
      
        box-sizing: border-box;
        padding: 30px 5% 10px;
        display: flex;
        align-items: column;
        flex-direction: column;
        justify-content: center;
    }
    .pro-header .pro-header-cat {
        margin-bottom: 20px;
    }
    .pro-header .pro-header-cat span {
        background: #fff;
        display: inline-block;
        color: #707071;
        font-size: 16px;
        border-radius: 38px;
        padding: 5px 15px;
    }
    .pro-header-pic {
        background: #fff;
        margin-left: -5%;
        margin-right: -5%;
    }
    .pro-header-pic img {
        transform: scale(0.7);
        transform-origin: center center;
    }
    .pro-header .pro-header-title {
        font-weight: bold;
        font-size: 28px;
        color: white;
        padding-top: 25px;
        position: relative;
        margin-top: 20px;
    }
    .pro-header .pro-header-title .pros-type {
        vertical-align: middle;
        position: absolute;
        left: 0;
        top: 0;
    }
    .pro-header .pro-header-title .pros-type.FREE {
        border: 1px solid white;
    }
    .pro-header .pros-tags {
        margin-top: 20px;
    }
    .pro-header .pros-tags span {
        color: white;
        border: 1px solid white;
    }
    .pro-header .pro-header-r {
        width: 35%;
        display: flex;
        align-items: column;
        flex-direction: column;
        justify-content: center;
        background: #fff;
    }
    
    .l-page-pro .box-content {
        /* display: flex;
        justify-content: space-between;
        align-items: flex-start; */
        padding-top: 0px;
        padding-left: 0;
        padding-right: 0;
    }
    .l-page-pro .box-content .pro-sidebar {
        display: block;
        width: 270px;
        position: sticky;
        background: #fff;
        box-shadow: 5px 5px 15px #ddd;
        left: 0;
        top: 100px;
        display: none;
    }
    .l-page-pro .box-content .pro-sidebar li {
        position: relative;
    }
    .l-page-pro .box-content .pro-sidebar li a {
        display: block;
        color: #2F3391;
        font-size: 20px;
        font-weight: bold;
        padding: 20px;
        position: relative;
        padding-left: 55px;
    }
    .l-page-pro .box-content .pro-sidebar li a:before {
        content: "";
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        margin-top: -11px;
        background: url(../img/ic-anchor.png) 0 0 no-repeat;
        background-size: contain;
        width: 22px;
        height: 22px;
        
    }
    .l-page-pro .box-content .pro-sidebar li:after {
        content: "";
        display: block;
        position: absolute;
        left: 5%;
        bottom: 0px;
        width: 90%;
        height: 1px;
        background: #2F3391;
    }
    .l-page-pro .box-content .pro-sidebar li:hover {
        background: #2F3391;
    }
    .l-page-pro .box-content .pro-sidebar li:hover a {
        color: white;
    }
    .l-page-pro .box-content .pro-sidebar li:hover a:before {
        background: url(../img/ic-anchor-w.png) 0 0 no-repeat;
        background-size: contain;
    }
    .l-page-pro .box-content .pro-sidebar li:hover a:after {
        content: "";
        display: block;
        position: absolute;
        right: -10px;
        top: 50%;
        background: url(../img/side-bullet.png) 0 0 no-repeat;
        background-size: contain;
        width: 20px;
        height: 20px;
        margin-top: -10px;
    }
    .l-page-pro .box-content .pro-sidebar ul:last-child li:after {
        content: none;
    }
    .l-page-pro .box-content .post {
        display: block;

        background: #fff;
        position: relative;
        box-shadow: 5px 5px 15px #ddd;
        box-sizing: border-box;
        padding: 20px;
    }
    
    /*
    POST PRO
    */
    .post-pro {
        position: relative;
    }
    .post-pro h2 {
        font-size: 22px;
        border-bottom: 5px solid #2F3391;
        padding-bottom: 15px;
        margin-top: 70px;
        margin-bottom: 30px;
        color: #2F3391;
        line-height: 1.5em;
    }
    .post-pro h2:first-child {
        margin-top: 0;
    }
    .post-pro h2:after {
        content: none;
    }
    .post-pro .list-feat {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        margin: 35px auto 45px;
    }
    .post-pro .list-feat > li {
        position: relative;
        font-size: 15px;
    }
    .post-pro .list-feat img {
        display: block;
        margin: 0 auto 15px;
    }
    .post-pro .list-feat strong {
        font-weight: bold;
        text-align: center;
        font-size: 18px;
        color: #2F3391;
    }
    .post-pro.post-single ol.list-feat li:before {
        counter-increment: li_count;
        content: counter(li_count);
        margin-right: 5px;
        color: white;
        display: block;
        font-size: 18px;
        background: #2F3391;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 100%;
        text-align: center;
    }
    .post-pro .title-check {
        font-size: 18px;
        font-weight: bold;
    }
    .post-pro .title-check:before {
        content: "";
        display: inline-block;
        background: url(../img/title-check.png) 0 0 no-repeat;
        background-size: contain;
        width: 27px;
        height: 27px;
        position: relative;
        top: 5px;
        margin-right: 5px;
    }
    .post-pro.post-single h3 {
        font-size: 18px;
        margin-top: 50px;
        margin-bottom: 25px;
    }
    /* .post-pro.post-single table {
        width: 100%;
    }
    .post-pro.post-single table {
        border: 1px solid #2F3391;
        height: auto !important;
        overflow-x: scroll;
        white-space: nowrap;
        display: block;
    }
    .post-pro.post-single table * {
        height: auto !important;
        width: auto !important;
    }
    .post-pro.post-single table th {
        background: #2F3391;
        color: white;
        font-weight: bold;
        border: 1px solid #fff;
        text-align: center;
        padding: 15px;
        width: auto !important;
    }
    .post-pro.post-single table td {
        border: 1px solid #2F3391;
        padding: 15px;
        text-align: center;
        vertical-align: middle;
        height: auto !important;
    }
    .post-pro.post-single table td:nth-child(1) {
        width: 150px !important;
    }
    .post-pro.post-single table .table-sep {
        text-align: center;
        font-weight: bold;
        color: #2F3391;
        background: #eee;
    }
    .post-pro.post-single table .icon {
        font-weight: bold;
        color: #2F3391;
        font-size: 1.2em;
    }
    .post-pro.post-single table td.left {
        text-align: left;
    }
    .post-pro.post-single table td.td-title {
        background: #2F3391;
        color: white;
        font-weight: bold;
        border: 1px solid #fff;
        text-align: center;
        padding: 15px;
        width: 150px !important;
    } */
    .post-pro.post-single table {

        height: auto !important;
        /* overflow-x: scroll;
        white-space: nowrap;
        display: block; */
    }
    .post-pro.post-single table .table-sep {
        text-align: center;
        font-weight: bold;
        color: #2F3391;
        background: #eee;
    }
    .post-pro.post-single table .icon {
        font-weight: bold;
        color: #2F3391;
        font-size: 1.2em;
    }
    .table-wrap {
        overflow-x: auto;
    }
    .table-price {
        width: 100%;
        min-width: 1200px;
        display: table !important;
    }
    .table-price td {
        position: static;
    }
    .table-price tr td:not(:first-child) {
        text-align: center !important;
    }
    .table-price td:first-child {
        position: sticky;
          top: 0;
          left: 0;
          border-left: none;
          border-right: none;
          background: none;
    }
    .table-price td:first-child:before {
        content: "";
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
        background-color: #e1ebff;
        z-index: -1;
        border-right: 1px solid #1c1a8a;
    }
    .table-price th:nth-child(5) {
    text-align: center;
    color: white;
    background: #1c1a8a;
    }
    
    .post-pro.post-single .list-flow {
        margin: 50px auto;
    }
    .post-pro.post-single .list-flow > li {
        position: relative;
        /* display: flex;
        justify-content: space-between; */
        margin-bottom: 50px;
    }
    .post-pro.post-single .list-flow > li:before {
        content: none;
    }
    /* .post-pro.post-single .list-flow .flow-content {
        position: relative;
        width: 55%;
    }
    .post-pro.post-single .list-flow .flow-pic {
        position: relative;
        width: 40%;
    }
    .post-pro.post-single .list-flow > li:nth-child(even) .flow-content {
        order: 2;
    }
    .post-pro.post-single .list-flow > li:nth-child(even) .flow-pic {
        order: 1;
    } */
    .post-pro.post-single .list-flow .flow-title {
        font-weight: bold;
        font-size: 18px;
        color: #2F3391;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .post-pro.post-single .list-flow .flow-title:before {
        counter-increment: li_count;
        content: "#"counter(li_count);
        margin-right: 5px;
    }
    .post-pro.post-single .list-flow p:not(.flow-title) {
        margin-left: 25px;

    }
    .post-pro.post-single .table-price-2 {
        display: table;
        white-space: break-spaces;
    }
    .post-pro.post-single .table-price-2 * {
        width: auto !important;
        height: auto !important;
    }
    .post-pro.post-single .table-price-2 td:nth-child(1) {
    width: auto !important;
    }
    .post-pro.post-single .table-price-2 .pr {
        position: static;
        top: auto;
        right: auto;
    }
}

/* =========================================
       シンプルFAQセクション (PC用)
    ========================================= */
    .faq-simple { max-width: 800px; margin: 60px auto 100px; }
    .faq-simple dl { margin: 0; padding: 0; }
    
    /* 質問 (Q) */
    .faq-simple dt { 
        font-size: 18px; 
        font-weight: bold; 
        color: #333333; 
        padding-left: 35px; 
        position: relative; 
        margin-bottom: 12px; 
        line-height: 1.5; 
    }
    .faq-simple dt::before { 
        content: "Q."; 
        color: #1c1a8a; /* メインブルー */
        position: absolute; 
        left: 0; 
        top: 0; 
        font-family: 'Poppins', sans-serif; 
        font-size: 20px; 
    }
    
    /* 回答 (A) */
    .faq-simple dd { 
        font-size: 15px; 
        color: #636363; 
        padding-left: 35px; 
        position: relative; 
        margin: 0 0 30px 0; 
        line-height: 1.8; 
        border-bottom: 1px solid #eeeeee; 
        padding-bottom: 30px; 
    }
    .faq-simple dd:last-child { 
        border-bottom: none; 
        margin-bottom: 0; 
        padding-bottom: 0; 
    }
    .faq-simple dd::before { 
        content: "A."; 
        color: #ed2856; /* アクセントレッド */
        font-weight: bold; 
        position: absolute; 
        left: 0; 
        top: 0; 
        font-family: 'Poppins', sans-serif; 
        font-size: 20px; 
    }