/* ---------------------------------------------------
  表示切り替え（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 {
	background-color: rgb(var(--ora));
	background-image: url(../img/arrow-link.svg);
	background-position: center right 20px;
	background-repeat: no-repeat;
	background-size: 52px auto;
	margin: 0 auto;
	width: 688px;
	height: 96px;
	color: rgb(var(--wht));
	font-size: 32px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 96px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 1280px) {
	.ipd .link-button {
		background-position: center right 1.563vw;
		background-size: 4.063vw auto;
		width: 53.75vw;
		height: 7.422vw;
		font-size: 2.50vw;
		border-radius: 7.422vw;
	}
}

@media screen and (max-width: 768px) {
	.ipd .link-button {
		background-position: center right 2.133vw;
		background-size: 5.333vw auto;
		width: 76.267vw;
		height: 11.2vw;
		font-size: 4.267vw;
		border-radius: 11.2vw;
	}
}