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

.pc-only {
	display: inline-block;
}

.sp,
.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {

	.pc,
	.pc-only {
		display: none;
	}

	.sp {
		display: block;
	}

	.sp-only {
		display: inline-block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

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

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) ")";
}

/* ---------------------------------------------------
  iframe動画ラッパー
--------------------------------------------------- */
.video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video iframe {
	width: 100%;
	height: 100%;
}

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background: rgb(var(--orn));
	padding-top: min(0.3rem, 0.234vw);
	height: min(4.2rem, 3.281vw);
	color: rgb(var(--wht));
	font-family: var(--zain);
	font-size: min(1.8rem, 1.406vw);
	font-weight: 800;
	text-decoration: none;
	border: solid 2px rgb(var(--orn));
	border-radius: min(4.2rem, 3.281vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.link-button::after {
	background: rgb(var(--wht));
	width: min(0.5rem, 0.391vw);
	height: min(1rem, 0.781vw);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: min(1.8rem, 1.406vw);
	transform: translateY(-50%);
	content: "";
}

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

.link-button:hover::after {
	background: rgb(var(--orn));
}

@media screen and (max-width: 768px) {
	.link-button {
		padding-top: 0.8vw;
		height: 11.2vw;
		font-size: 4.8vw;
		border-radius: 11.2vw;
	}

	.link-button::after {
		width: 1.333vw;
		height: 2.667vw;
		right: 4.8vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.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(100px);
}

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

.fadeRight {
	transform: translateX(100px);
}

.fadeRight.fadeIn {
	transform: translateX(0);
}

.fadeLeft {
	transform: translateX(-100px);
}

.fadeLeft.fadeIn {
	transform: translateX(0);
}

/* ---------------------------------------------------
  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;
}

/* ---------------------------------------------------
  frame
--------------------------------------------------- */
/*
	frame-wht
------------------------------ */
.frame-wht {
	background-image: url(../img/frame-whtBg.webp);
	background-size: 100% auto;
	background-position: center;
	background-repeat: repeat-y;
	position: relative;
}

.frame-wht::before,
.frame-wht::after {
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: min(1.8rem, 1.406vw);
	position: absolute;
	left: 0;
	content: "";
}

.frame-wht::before {
	background-image: url(../img/frame-whtBg-top.webp);
	background-position: center bottom;
	top: max(-1.8rem, -1.406vw);
}

.frame-wht::after {
	background-image: url(../img/frame-whtBg-bottom.webp);
	background-position: center top;
	bottom: max(-1.8rem, -1.406vw);
}

@media screen and (max-width: 768px) {

	.frame-wht::before,
	.frame-wht::after {
		height: 5.333vw;
	}

	.frame-wht::before {
		top: -4.8vw;
	}

	.frame-wht::after {
		bottom: -4.8vw;
	}
}

/*
	frame-orn
------------------------------ */
.frame-orn {
	background-image: url(../img/frame-ornBg.webp);
	background-position: center;
	background-repeat: repeat-y;
	background-size: 100% auto;
}

.frame-orn::before,
.frame-orn::after {
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: min(1.8rem, 1.406vw);
	position: absolute;
	left: 0;
	content: "";
}

.frame-orn::before {
	background-image: url(../img/frame-ornBg-top.webp);
	background-position: center bottom;
	top: max(-1.8rem, -1.406vw);
}

.frame-orn::after {
	background-image: url(../img/frame-ornBg-bottom.webp);
	background-position: center top;
	bottom: max(-1.8rem, -1.406vw);
}

@media screen and (max-width: 768px) {
	.frame-orn {
		background-image: url(../img/frame-ornBg_sp.webp);
	}

	.frame-orn::before,
	.frame-orn::after {
		height: 5.333vw;
	}

	.frame-orn::before {
		background-image: url(../img/frame-ornBg-top_sp.webp);
		top: -4.8vw;
	}

	.frame-orn::after {
		background-image: url(../img/frame-ornBg-bottom_sp.webp);
		bottom: -4.8vw;
	}
}