/* ---------------------------------------------------
  表示切り替え（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.2rem, 0.878vw);
}

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

ul.note.en li::before {
	content: "*";
}

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

/* ● マーカー付きリスト */
ul.type1 li::before {
	content: "●";
}

/* カウンター付き番号リスト */
ol.cnt li {
	display: flex;
	counter-increment: number;
}

ol.cnt li::before {
	margin: 0.5em 1em 0 0;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	content: "0"counter(number) ".";
}

@media screen and (max-width: 768px) {
	ol.cnt li::before {
		margin-top: 0.25em;
		font-size: 4.267vw;
	}
}

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background: linear-gradient(90deg, rgba(235, 112, 166, 1) 39.42%, rgba(255, 110, 113, 1) 100%);
	height: min(6rem, 4.392vw);
	line-height: 1;
	color: rgb(var(--wht));
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	text-decoration: none;
	border-radius: min(6rem, 4.392vw);
	border: solid 1px transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button__inner {
	background-image: url(../img/link-arrow02.svg);
	background-position: center right min(1rem, 0.732vw);
	background-repeat: no-repeat;
	background-size: min(3rem, 2.196vw) auto;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.link-button:hover .link-button__inner {
	background-image: url(../img/link-arrow02_hov.svg);
}

.link-button:hover {
	background: rgb(var(--wht));
	color: rgb(var(--blk));
	opacity: 1;
	border-color: rgb(var(--blk));
}

@media screen and (max-width: 768px) {
	.link-button {
		margin: 0 auto;
		width: 100%;
		height: 14.4vw;
		font-size: 4vw;
		border-radius: 14.4vw;
	}

	.link-button__inner {
		background-position: center right 2.667vw;
		background-size: 7.2vw auto;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(152, 216, 175, 1);
	width: 64px;
	height: 64px;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1em;
	bottom: 1em;
	z-index: 10;
}

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

@media screen and (max-width: 768px) {
	.pageTop a {
		bottom: 4em;
	}
}