.elementor-201 .elementor-element.elementor-element-24d9008{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-201 .elementor-element.elementor-element-9e08ad7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-ed0303e *//* ▼▼▼ Grace Tokyo ブログ記事用CSS (色変更後) ▼▼▼ */

/* --- 記事全体の基本設定 --- */
.grc-article {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
	color: #333;
	line-height: 1.8;
}
.grc-article p {
	margin-bottom: 1.5em;
}
.grc-article a {
	color: #2c2e30; /* リンク色も黒っぽい色に */
	text-decoration: none;
}
.grc-article a:hover {
	text-decoration: underline;
}

/* --- 見出しデザイン --- */
.grc-h2 {
	font-size: 1.5em;
	background-color: #f0f0f0; /* 背景色を薄いグレーに */
	padding: 15px 20px;
	border-left: 5px solid #2c2e30; /* アクセントラインを黒っぽい色に */
	border-radius: 5px;
	margin: 50px 0 25px 0;
}
.grc-h3 {
	font-size: 1.25em;
	color: #2c2e30; /* 見出し色を黒っぽい色に */
	border-bottom: 2px solid #2c2e30; /* 下線を黒っぽい色に */
	padding-bottom: 8px;
	margin: 40px 0 20px 0;
}

/* --- 強調マーカー --- */
.grc-marker {
	background: linear-gradient(transparent 60%, #e8e8e8 60%); /* マーカー色を薄いグレーに */
	padding: 0 2px;
}

/* --- 汎用ボックス & 各種ボックスデザイン --- */
.grc-box {
	margin: 30px 0;
	padding: 25px;
	border-radius: 8px;
}
.grc-box-title {
	text-align: center;
	font-weight: bold;
	font-size: 1.1em;
	margin-top: 0;
	margin-bottom: 20px;
}
.grc-box-problem {
	background-color: #f9f9f9;
	border: 1px solid #eee;
}
.grc-box-problem ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.grc-box-problem li {
	margin-bottom: 10px;
}
.grc-box-problem li:last-child {
	margin-bottom: 0;
}
.grc-icon {
	color: #2c2e30; /* アイコン色を黒っぽい色に */
	margin-right: 8px;
}
.grc-box-access {
	background: #fff;
	border: 2px dashed #2c2e30; /* アクセスボックスの点線を黒っぽい色に */
}
.grc-box-access ul {
	margin: 0;
	padding-left: 20px;
}
.grc-box-final {
	border: 1px solid #2c2e30; /* 最終ボックスの枠線を黒っぽい色に */
	text-align: center;
}
.grc-final-links {
	list-style: none;
	padding-left: 0;
	margin: 20px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 20px;
}

/* --- ボタンデザイン --- */
.grc-button-wrapper {
	text-align: center;
	margin: 30px 0;
}
.grc-button {
	display: inline-block;
	background-color: #2c2e30; /* ボタンの背景色を黒っぽい色に */
	color: #ffffff !important;
	text-decoration: none !important;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: bold;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: opacity 0.3s, transform 0.3s;
}
.grc-button:hover {
	opacity: 0.8;
	transform: translateY(-2px);
	text-decoration: none !important;
}

/* --- 癒しの流れ（手順リスト） --- */
.grc-flow-list {
	list-style: none;
	padding-left: 0;
	counter-reset: flow-counter;
}
.grc-flow-list li {
	position: relative;
	padding: 15px 15px 15px 60px;
	margin-bottom: 15px;
	background: #f9f9f9;
	border-radius: 5px;
}
.grc-flow-list li::before {
	counter-increment: flow-counter;
	content: counter(flow-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 45px;
	height: 100%;
	background: #2c2e30; /* 番号の背景色を黒っぽい色に */
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25em;
	font-weight: bold;
	border-radius: 5px 0 0 5px;
}

/* --- FAQデザイン --- */
.grc-faq {
	margin-top: 30px;
}
.grc-faq-item {
	margin-bottom: 20px;
}
.grc-faq-q {
	display: flex;
	align-items: flex-start;
	background-color: #f9f9f9;
	padding: 15px;
	border-radius: 5px;
	margin: 0;
	font-size: 1.1em;
	border: none;
	color: #333;
}
.grc-faq-icon {
	color: #2c2e30; /* FAQアイコン色を黒っぽい色に */
	font-size: 1.5em;
	margin-right: 10px;
	font-weight: bold;
	line-height: 1.4;
}
.grc-faq-a {
	padding: 20px;
	border: 1px solid #f0f0f0;
	border-top: none;
	border-radius: 0 0 5px 5px;
	background: #fff;
}
.grc-faq-a p {
	margin: 0;
}

/* --- その他 --- */
.grc-center-text {
	text-align: center;
}

/* --- スマートフォン向け調整（レスポンシブ対応） --- */
@media (max-width: 768px) {
	.grc-h2 {
		font-size: 1.3em;
		padding: 12px 15px;
	}
	.grc-h3 {
		font-size: 1.15em;
	}
	.grc-button {
		padding: 12px 25px;
		font-size: 0.9em;
	}
	.grc-flow-list li {
		padding: 15px 15px 15px 50px;
	}
	.grc-flow-list li::before {
		width: 35px;
	}
}

/* ▲▲▲ Grace Tokyo ブログ記事用CSS ここまで ▲▲▲ *//* End custom CSS */