/* ---------------------------------------------------
  表示切り替え（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-family: var(--gothic);
	font-size: min(1.4rem, 1.025vw);
}

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

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-image: url(../img/icon-arrow01.svg);
	background-position: center right min(2.6rem, 1.903vw);
	background-repeat: no-repeat;
	background-size: min(2.6rem, 1.903vw) auto;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.5s ease 0s;
}

.link-button:hover {
	background-image: url(../img/icon-arrow01-on.svg);
	opacity: 1;
}

.link-button svg {
	overflow: visible;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 6.133vw;
		background-size: 6.933vw auto;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	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: 16px;
	height: auto;
}