/**
 * 月次配当チェックシート完全版 公開案内ページ。
 *
 * haitou.css のトークンと共通UIを使い、このテンプレートだけを広めの
 * コンテンツ設計・提供状況・フォーム表示へ整える。
 */

.ht-root.ht-paid-checksheet {
	padding-top: clamp(24px, 4vw, 52px);
}

.ht-root .ht-paid-checksheet__hero {
	max-width: 820px;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.ht-root .ht-paid-checksheet__hero .ht-account-hero__title {
	font-size: clamp(2rem, 4vw, 3.15rem);
	line-height: 1.24;
	letter-spacing: -0.025em;
}

.ht-root .ht-paid-checksheet__hero .ht-account-hero__lead {
	max-width: 720px;
	margin-inline: auto;
	font-size: clamp(0.96rem, 1.7vw, 1.08rem);
	line-height: 2;
}

.ht-root .ht-paid-checksheet__availability {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	max-width: 680px;
	margin: 22px auto 0;
	padding: 0;
	list-style: none;
}

.ht-root .ht-paid-checksheet__availability li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--ht-color-card);
	border: 1px solid var(--ht-color-border);
	border-radius: var(--ht-radius-sm);
	box-shadow: var(--ht-shadow-soft);
	text-align: left;
}

.ht-root .ht-paid-checksheet__availability strong {
	flex: 0 0 auto;
	padding: 3px 9px;
	background: var(--ht-color-leaf-soft);
	color: var(--ht-color-deep);
	font-size: 0.72rem;
	border-radius: var(--ht-radius-pill);
}

.ht-root .ht-paid-checksheet__availability span {
	color: var(--ht-color-text);
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.55;
}

.ht-root .ht-paid-checksheet__grid {
	gap: 22px;
	max-width: 920px;
	margin-bottom: 24px;
}

.ht-root .ht-paid-checksheet__grid > .ht-account-card {
	padding: clamp(24px, 4vw, 38px);
}

.ht-root .ht-paid-checksheet__grid .ht-mini-label {
	display: inline-block;
	margin-bottom: 7px;
	color: var(--ht-color-leaf);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.ht-root .ht-paid-checksheet__grid .ht-account-card__title {
	margin-bottom: 14px;
	font-size: clamp(1.2rem, 2.6vw, 1.55rem);
	line-height: 1.55;
}

.ht-root .ht-paid-checksheet__grid .ht-account-card__text {
	font-size: 0.96rem;
	line-height: 1.95;
}

.ht-root .ht-paid-checksheet__intro {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--ht-color-card) 0%, var(--ht-color-leaf-soft) 100%);
}

.ht-root .ht-paid-checksheet__intro::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: var(--ht-color-leaf);
	content: "";
}

.ht-root .ht-paid-checksheet__grid .ht-register-benefits {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.ht-root .ht-paid-checksheet__grid .ht-register-benefit {
	padding: 16px 18px;
}

.ht-root .ht-paid-checksheet__grid .ht-register-benefit:last-child {
	grid-column: 1 / -1;
}

.ht-root .ht-paid-checksheet__grid .ht-mypage-guide__list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ht-root .ht-paid-checksheet__grid .ht-mypage-guide__item {
	padding: 18px;
	background: var(--ht-color-bg);
	border: 1px solid var(--ht-color-border);
	border-radius: var(--ht-radius-sm);
}

.ht-root .ht-paid-checksheet__grid .ht-mypage-guide__item-title {
	font-size: 0.96rem;
	line-height: 1.65;
}

.ht-root .ht-paid-checksheet__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	counter-reset: ht-paid-step;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.ht-root .ht-paid-checksheet__steps li {
	position: relative;
	min-height: 100%;
	padding: 52px 18px 18px;
	background: var(--ht-color-bg);
	border: 1px solid var(--ht-color-border);
	border-radius: var(--ht-radius-sm);
	counter-increment: ht-paid-step;
}

.ht-root .ht-paid-checksheet__steps li::before {
	position: absolute;
	top: 16px;
	left: 18px;
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	background: var(--ht-color-deep);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 50%;
	content: counter(ht-paid-step);
}

.ht-root .ht-paid-checksheet__steps strong,
.ht-root .ht-paid-checksheet__steps span {
	display: block;
}

.ht-root .ht-paid-checksheet__steps strong {
	margin-bottom: 7px;
	color: var(--ht-color-deep);
	font-size: 0.96rem;
	line-height: 1.6;
}

.ht-root .ht-paid-checksheet__steps span {
	color: var(--ht-color-text-sub);
	font-size: 0.84rem;
	line-height: 1.8;
}

.ht-root .ht-paid-checksheet__access {
	background: linear-gradient(150deg, var(--ht-color-card) 0%, var(--ht-color-note-bg) 100%);
}

.ht-root .ht-paid-checksheet__access .ht-account-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	margin-top: 20px;
}

.ht-root .ht-paid-checksheet__access .ht-account-actions + .ht-account-interest-form {
	margin-top: 30px;
}

.ht-root .ht-account-interest-form {
	padding-top: 28px;
	border-top: 1px solid var(--ht-color-border);
}

.ht-root .ht-account-interest-form .wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.ht-root .ht-account-interest-form .wpcf7-form > p {
	margin: 0;
}

.ht-root .ht-account-interest-form .wpcf7-form > fieldset.hidden-fields-container {
	display: none;
}

.ht-root .ht-account-interest-form .wpcf7-form > p:nth-of-type(3),
.ht-root .ht-account-interest-form .wpcf7-form > p:nth-of-type(n + 4) {
	grid-column: 1 / -1;
}

.ht-root .ht-account-interest-form label {
	display: block;
	color: var(--ht-color-deep);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.7;
}

.ht-root .ht-account-interest-form input[type="text"],
.ht-root .ht-account-interest-form input[type="email"],
.ht-root .ht-account-interest-form select,
.ht-root .ht-account-interest-form textarea {
	width: 100%;
	margin-top: 7px;
	padding: 12px 14px;
	background: #fff;
	color: var(--ht-color-text);
	font: inherit;
	border: 1px solid var(--ht-color-border);
	border-radius: var(--ht-radius-sm);
}

.ht-root .ht-account-interest-form textarea {
	min-height: 140px;
	resize: vertical;
}

.ht-root .ht-account-interest-form input:focus,
.ht-root .ht-account-interest-form select:focus,
.ht-root .ht-account-interest-form textarea:focus {
	border-color: var(--ht-color-leaf);
	box-shadow: 0 0 0 3px rgba(31, 92, 66, 0.12);
	outline: 0;
}

.ht-root .ht-account-interest-form .wpcf7-list-item {
	margin: 0 16px 7px 0;
}

.ht-root .ht-account-interest-form .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 0.82rem;
	font-weight: 400;
	line-height: 1.75;
}

.ht-root .ht-account-interest-form .wpcf7-submit {
	padding: 14px 24px;
	background: var(--ht-color-deep);
	color: #fff;
	font: inherit;
	font-weight: 700;
	border: 0;
	border-radius: var(--ht-radius-pill);
	cursor: pointer;
}

.ht-root .ht-paid-checksheet__faq dl {
	display: grid;
	gap: 0;
	margin: 6px 0 0;
}

.ht-root .ht-paid-checksheet__faq dl > div {
	padding: 18px 0;
	border-top: 1px solid var(--ht-color-border);
}

.ht-root .ht-paid-checksheet__faq dt {
	margin-bottom: 7px;
	color: var(--ht-color-deep);
	font-weight: 700;
}

.ht-root .ht-paid-checksheet__faq dd {
	margin: 0;
	color: var(--ht-color-text-sub);
	font-size: 0.9rem;
	line-height: 1.85;
}

.ht-root .ht-paid-checksheet__related {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	justify-content: center;
	max-width: 920px;
	margin: 0 auto 18px;
}

.ht-root .ht-paid-checksheet__related a {
	color: var(--ht-color-deep);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ht-root.ht-paid-checksheet .ht-account-note--disclaimer {
	max-width: 920px;
	margin-inline: auto;
}

@media (max-width: 760px) {
	.ht-root .ht-paid-checksheet__availability,
	.ht-root .ht-paid-checksheet__grid .ht-register-benefits,
	.ht-root .ht-paid-checksheet__grid .ht-mypage-guide__list,
	.ht-root .ht-paid-checksheet__steps,
	.ht-root .ht-account-interest-form .wpcf7-form {
		grid-template-columns: 1fr;
	}

	.ht-root .ht-paid-checksheet__grid .ht-register-benefit:last-child,
	.ht-root .ht-account-interest-form .wpcf7-form > p:nth-of-type(3),
	.ht-root .ht-account-interest-form .wpcf7-form > p:nth-of-type(n + 4) {
		grid-column: auto;
	}
}

@media (max-width: 600px) {
	.ht-root.ht-paid-checksheet {
		padding-top: 18px;
	}

	.ht-root .ht-paid-checksheet__hero .ht-account-hero__title {
		font-size: 1.75rem;
	}

	.ht-root .ht-paid-checksheet__availability li {
		align-items: flex-start;
	}

	.ht-root .ht-paid-checksheet__grid {
		gap: 16px;
	}

	.ht-root .ht-paid-checksheet__grid > .ht-account-card {
		padding: 22px 18px;
	}

	.ht-root .ht-paid-checksheet__access .ht-account-actions {
		align-items: stretch;
		flex-direction: column;
	}
}
