@charset "utf-8";
/* ==================================================================
   無料相談CTA（記事末尾／サイドバー／グローバルナビ）
   inc/cta-contact.php とセット。

   ・クラス名は全て saimu-cta 接頭辞。既存CSSと衝突させないため。
   ・このサイトはモバイル比率が約90%のため、モバイルを基準に書き、
     PCはメディアクエリで上書きする。
   ・色は管理ブックのパレットに合わせている（濃紺 1F3B57 / CRO橙 C8791E）。
   ================================================================== */

/* ------------------------------------------------------------------
   共通ボックス
   ------------------------------------------------------------------ */
.saimu-cta {
	box-sizing: border-box;
	margin: 32px 0;
	padding: 20px 16px;
	border: 2px solid #1f3b57;
	border-radius: 8px;
	background: #f7f9fb;
	color: #23303c;
	line-height: 1.7;
}

.saimu-cta * {
	box-sizing: border-box;
}

.saimu-cta__eyebrow {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 700;
	color: #2e6e9e;
	letter-spacing: .04em;
}

.saimu-cta__lead {
	margin: 0 0 10px;
	font-size: 19px;
	font-weight: 700;
	color: #1f3b57;
	line-height: 1.5;
}

.saimu-cta__lead strong {
	color: #c8791e;
}

.saimu-cta__body {
	margin: 0 0 14px;
	font-size: 14px;
}

/* --- 安心材料のリスト --- */
.saimu-cta__points {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.saimu-cta__points li {
	margin: 0;
	padding: 4px 10px 4px 24px;
	position: relative;
	font-size: 13px;
	font-weight: 700;
	color: #1f3b57;
	background: #dce7f1;
	border-radius: 999px;
	list-style: none;
}

/* チェックマークは擬似要素で描く（画像を足さない） */
.saimu-cta__points li::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 50%;
	width: 5px;
	height: 9px;
	margin-top: -6px;
	border-right: 2px solid #2e7d5b;
	border-bottom: 2px solid #2e7d5b;
	transform: rotate(45deg);
}

/* --- ボタン --- */
.saimu-cta__action {
	margin: 0 0 8px;
	text-align: center;
}

.saimu-cta__btn {
	display: block;
	width: 100%;
	padding: 16px 20px;
	position: relative;
	border-radius: 6px;
	background: #c8791e;
	box-shadow: 0 3px 0 #a4620f;
	color: #fff !important;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none !important;
	transition: transform .08s ease, box-shadow .08s ease, background-color .15s ease;
}

.saimu-cta__btn::after {
	content: "›";
	margin-left: .5em;
	font-weight: 400;
}

.saimu-cta__btn:hover {
	background: #d4842a;
	color: #fff !important;
}

/* 押した感触を返す。モバイルで「反応しているか」が分かるように */
.saimu-cta__btn:active {
	transform: translateY(3px);
	box-shadow: 0 0 0 #a4620f;
}

.saimu-cta__note {
	margin: 0;
	font-size: 12px;
	color: #5a6b7a;
	text-align: center;
}

/* ------------------------------------------------------------------
   サイドバー版（幅が狭いので詰める）
   ------------------------------------------------------------------ */
.saimu-cta--sidebar {
	margin: 0 0 20px;
	padding: 16px 14px;
}

.saimu-cta--sidebar .saimu-cta__lead {
	font-size: 16px;
	text-align: center;
}

.saimu-cta--sidebar .saimu-cta__points {
	display: block;
	margin-bottom: 12px;
}

.saimu-cta--sidebar .saimu-cta__points li {
	display: block;
	margin-bottom: 4px;
	background: none;
	padding: 2px 0 2px 22px;
	font-weight: 400;
	font-size: 13px;
}

.saimu-cta--sidebar .saimu-cta__btn {
	padding: 13px 12px;
	font-size: 15px;
}

/* ------------------------------------------------------------------
   グローバルナビのボタン
   ------------------------------------------------------------------ */
.saimu-cta-nav {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: #c8791e;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	line-height: 1.4;
}

.saimu-cta-nav:hover {
	background: #d4842a;
	color: #fff !important;
}

.saimu-cta-nav__strong {
	font-size: 1.08em;
}

/* グロナビの li が独自の装飾（区切り線など）を持つ場合に打ち消す */
.gnavi li.gnavi__cta,
.gnavi li.gnavi__cta:hover {
	background: none;
	border: none;
}

.gnavi li.gnavi__cta a {
	display: inline-block;
}

/* ------------------------------------------------------------------
   PC
   ------------------------------------------------------------------ */
@media screen and (min-width: 768px) {

	.saimu-cta--inline {
		padding: 28px 28px 24px;
	}

	.saimu-cta--inline .saimu-cta__lead {
		font-size: 23px;
	}

	.saimu-cta--inline .saimu-cta__body {
		font-size: 15px;
	}

	/* PCでは横幅いっぱいのボタンは間延びするので中央に寄せる */
	.saimu-cta--inline .saimu-cta__btn {
		display: inline-block;
		width: auto;
		min-width: 340px;
		font-size: 19px;
	}
}
