@charset "UTF-8";


/* memregterm.html */
/* 規約リンク部分のデザイン */
.terms-link {
	font-size: 22px;
	text-align: center;
	margin: 2px 5% 2px;
	color: #555;
}

	.terms-link a {
		color: #3cb5ef; /* ログインボタンと同系色 */
		text-decoration: underline;
	}

		.terms-link a:hover {
			text-decoration: none;
		}

.terms-pdf__icon {
	width: 40px;
}

/* このページだけflexレイアウトで縦に並べる */
html, body {
	height: 100%;
}

	body.memreg {
		display: flex;
		flex-direction: column;
		min-height: 100vh; /* 画面高を満たす */
	}
		/* 本文(=entry-card)を可変領域にして余白を埋める */
		body.memreg .entry-card {
			flex: 1;
		}
		/* フッタを最下部へ */
		body.memreg footer {
			margin-top: auto;
		}
