/* フロントページ専用（ヘッダー位置・余白の調整） */
.l-header {
	z-index: 100 !important;
	position: relative;
	top: 0 !important;
}

body {
	padding-top: 0 !important;
}

/* 入会ボタンの価格部分（スマホでは改行・小さめ表示） */
.st-btn .btn-price {
	font-size: 0.85em;
}
@media (max-width: 599px) {
	.st-btn .btn-price {
		display: block;
		font-size: 0.75em;
		margin-top: 0.2em;
	}
}

/* 入会ボタン下の注意書き */
.btn-note {
	text-align: center;
	font-size: 0.85em;
	color: #666;
	margin-bottom: 1.5em;
}
/* メインビジュアル（FV）内では背景写真と同化しないよう、白文字＋半透明黒背景で視認性を確保 */
.st-catch .btn-note {
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
	padding: 4px 12px;
	border-radius: 4px;
	width: max-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
/* style.css の `.st-main p + p { margin-top: 1em; }` より詳細度を上げて10pxを反映 */
.st-main p.btn-note {
	margin-top: 10px;
}

/* st-sec6 のボタンは `.st-main .st-sec6 .st-btn { margin: 60px 0 }` で
   下60pxの余白が付くため、直後に .btn-note が続く場合は下マージンを0にして
   .btn-note 側で間隔を制御する（ネガティブマージン不使用）。
   元の60pxの間隔は .btn-note の margin-bottom で確保する。 */
.st-main .st-sec6 .st-btn:has(+ .btn-note) {
	margin-bottom: 0;
}
.st-main .st-sec6 .btn-note {
	margin-bottom: 60px;
}

/* 「お申し込みについて」ブロック（入会条件リスト直後・CTAボタン直前） */
.enroll-features-heading {
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	margin: 40px 0 20px;
}
.enroll-features-heading::before,
.enroll-features-heading::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 1px;
	background: #999;
	vertical-align: middle;
	margin: 0 12px;
}
.enroll-features {
	list-style: none;
	padding: 0;
	margin: 0 auto 40px;
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}
.enroll-features li {
	flex: 1 1 240px;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px 16px;
	text-align: center;
	color: #333;
}
.enroll-features li i {
	display: block;
	font-size: 2rem;
	color: #CC0000;
	margin-bottom: 10px;
}
.enroll-features-title {
	display: block;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.4;
}
@media (max-width: 599px) {
	.enroll-features {
		gap: 10px;
	}
	.enroll-features li {
		flex: 1 1 100%;
		padding: 14px 16px;
		display: flex;
		align-items: center;
		gap: 12px;
		text-align: left;
	}
	.enroll-features li i {
		display: inline-block;
		font-size: 1.5rem;
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

/* お問い合わせブロック（メール / LINE 2択） */
.contact-box {
	max-width: 720px;
	margin: 60px auto;
	padding: 30px 24px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	text-align: center;
}
.contact-box-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0 8px;
	color: #193C86;
}
.contact-box-lead {
	font-size: 0.95rem;
	color: #555;
	margin: 0 0 24px;
}
.contact-options {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: stretch;
}
.contact-option {
	flex: 1 1 260px;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 18px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}
.contact-option,
.contact-option:hover,
.contact-option:focus,
.contact-option:active,
.contact-option:visited {
	text-decoration: none;
	border-bottom: none;
}
.contact-option--mail,
.contact-option--mail:hover,
.contact-option--mail:focus,
.contact-option--mail:visited {
	color: #fff;
}
.contact-option--line,
.contact-option--line:hover,
.contact-option--line:focus,
.contact-option--line:visited {
	color: #444;
}
.contact-option:hover {
	transform: translateY(-2px);
	opacity: 0.92;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.contact-option--mail {
	background: #193C86;
	color: #fff;
}
.contact-option--mail i {
	font-size: 1.6rem;
	margin-bottom: 2px;
}
.contact-option--mail .contact-option-label {
	font-size: 1.1rem;
}
.contact-option--mail .contact-option-sub {
	font-size: 0.8rem;
	font-weight: normal;
	opacity: 0.85;
}
.contact-option--line {
	background: #fff;
	border: 1px solid #e0e0e0;
	color: #444;
}
.contact-option--line img {
	display: block;
	height: 40px;
	width: auto;
}
.contact-option--line .contact-option-sub {
	font-size: 0.85rem;
	color: #555;
	font-weight: normal;
}
@media (max-width: 599px) {
	.contact-box {
		margin: 40px 16px;
		padding: 24px 16px;
	}
	.contact-options {
		flex-direction: column;
		gap: 14px;
	}
	.contact-option {
		max-width: 100%;
	}
}

/* メインビジュアル（.st-catch）内は .st-catch-description が position: absolute のため、
   .st-catch-box の固定高さを超えると overflow:hidden で切られる。
   注意書きを追加した分、高さを拡張する。モバイル時は元の auto を維持。 */
.st-catch .st-catch-box {
	height: 750px;
}
@media (max-width: 999px) {
	.st-catch .st-catch-box {
		height: auto;
	}
}
