/* ---------------------------------------------------
  表示切り替え（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.list.en li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

/* 注記リスト（改良版） */
ul.note li {
	font-size: min(1.3rem, 1.016vw);
}

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

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

/* ---------------------------------------------------
  電話リンク
--------------------------------------------------- */
.telephone {
	text-decoration: none;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.telephone {
		pointer-events: all;
	}
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-position: center right min(2.1rem, 1.641vw);
	background-repeat: no-repeat;
	background-size: min(2.6rem, 2.031vw) auto;
	margin: min(4rem, 3.125vw) auto 0;
	width: min(34rem, 26.563vw);
	height: min(7.6rem, 5.938vw);
	font-size: min(2rem, 1.563vw);
	font-weight: 500;
	text-decoration: none;
	border-radius: min(0.8rem, 0.625vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button.type01 {
	background-color: rgb(var(--pnk));
	background-image: url(../img/arrow-link01.svg);
	color: rgb(var(--wht));
}

.link-button.type02 {
	background-color: rgb(var(--wht));
	background-image: url(../img/arrow-link02.svg);
	color: rgb(var(--pnk));
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 5.6vw;
		background-size: 6.933vw auto;
		margin-top: 10.667vw;
		width: 90.133vw;
		height: 20.267vw;
		font-size: 5.333vw;
		border-radius: 2.133vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--pnk), 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;
}