/* ---------------------------------------------------
  表示切り替え（PC / SP）
--------------------------------------------------- */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

ul.note li {
	font-size: 1.2rem;
}

ul.note li::before {
	content: "※";
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-color: rgb(var(--blk));
	width: 23.7rem;
	height: 4.8rem;
	color: rgb(var(--wht));
	font-size: 1.4rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 4.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	position: relative;
}

.link-button svg {
	width: 1.1rem;
	height: 1.3rem;
	fill: rgb(var(--wht));
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translateY(-50%);
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--red), 0.95);
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 0.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: var(--pageTop-right);
	bottom: var(--pageTop-bottom);
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 1.6rem;
	height: auto;
}