/* ---------------------------------------------------
  表示切り替え（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: 1em;
	text-indent: -0.5em;
}

/* 注記リスト */
ul.note li {
	font-size: min(1.4rem, 1.025vw);
}

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 {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

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

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

/* ---------------------------------------------------
  テキストリンク
--------------------------------------------------- */
.link-text {
	color: rgb(var(--orn));
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background: rgb(var(--orn));
	margin: 0 auto;
	width: min(15.2rem, 11.127vw);
	height: min(4.6rem, 3.367vw);
	font-family: var(--font-en);
	font-size: min(1.6rem, 1.171vw);
	text-decoration: none;
	border: solid 1px rgb(var(--orn));
	border-radius: min(4.6rem, 3.367vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button.grn {
	background: rgb(var(--grn));
	border-color: rgb(var(--grn));
}

.link-button.rectangle {
	width: min(39.4rem, 28.843vw);
	height: min(8.8rem, 6.442vw);
	font-size: min(2.4rem, 1.757vw);
	border-radius: 0;
}

.link-button__text {
	line-height: 1;
}

.link-button .icon-wrap {
	margin-left: min(1.6rem, 1.171vw);
	position: relative;
	bottom: min(0.3rem, 0.22vw);
}

.link-button.rectangle .icon-wrap {
	bottom: 0;
}

.link-button .icon {
	fill: white;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.link-button .icon--circle {
	width: min(0.8rem, 0.586vw);
	height: auto;
}

.link-button .icon--arrow {
	width: min(1.4rem, 1.025vw);
	height: auto;
	opacity: 0;
	transform: translateX(max(-1rem, -0.732vw));
}

/*.hover */
.link-button:hover {
	background: rgb(var(--blk));
	opacity: 1;
}

.link-button:hover .icon--circle {
	opacity: 0;
}

.link-button:hover .icon--arrow {
	opacity: 1;
	transform: translateX(0);
}

@media screen and (max-width: 768px) {
	.link-button {
		width: 32vw;
		height: 10.133vw;
		font-size: 3.733vw;
		border-radius: 10.133vw;
	}

	.link-button.rectangle {
		width: 80vw;
		height: 16vw;
		font-size: 4.267vw;
	}

	.link-button .icon-wrap {
		margin-left: 3.2vw;
		bottom: 0.533vw;
	}

	.link-button .icon--circle {
		width: 1.6vw;
	}

	.link-button .icon--arrow {
		width: 3.2vw;
		transform: translateX(-2.667vw);
	}
}

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

/* ---------------------------------------------------
  フェードイン
--------------------------------------------------- */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

.fadeBottom {
	transform: translateY(40px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/* ----------------------------------------------------
	zoom-out
---------------------------------------------------- */
.zoom-target {
	opacity: 0;
	transform: scale(1.2);
	transition: transform 1s ease-out, opacity 1s ease-out;
}

.zoom-target.zoom-in {
	opacity: 1;
	transform: scale(1);
}

/* ---------------------------------------------------
  Visually Hidden
--------------------------------------------------- */
.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	border: 0;
	position: absolute;
}