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

.ipd .sp {
	display: none;
}

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

	.ipd .sp {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
.ipd .list li {
	margin-left: 1em;
	font-size: 16px;
	text-indent: -1em;
}

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

.ipd .dots li::before {
	content: "・";
}

@media screen and (max-width: 1280px) {
	.ipd .list li {
		font-size: 1.25vw;
	}
}

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.ipd .link-button {
	margin: 0 auto;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}