/* ---------------------------------------------------
  表示切り替え（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.note li {
	font-size: min(1.4rem, 1.094vw);
	font-weight: 300;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/* ● マーカー付きリスト */
ul.type1 li::before {
	content: "●";
}

/* ---------------------------------------------------
  電話リンク
--------------------------------------------------- */
.telephone {
	text-decoration: none;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.telephone {
		pointer-events: all;
	}
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	width: min(22.5rem, 17.578vw);
	height: min(5rem, 3.906vw);
	font-family: var(--mincho);
	font-size: min(1.6rem, 1.25vw);
	font-weight: 500;
	text-decoration: none;
	border-radius: min(0.5rem, 0.391vw) 0 0 min(0.5rem, 0.391vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.link-button::before {
	width: min(2.5rem, 1.953vw);
	height: 100%;
	clip-path: polygon(20% 0, 100% 50%, 20% 100%, 0 100%, 0 0);
	position: absolute;
	top: 50%;
	right: max(-2rem, -1.563vw);
	transform: translateY(-50%);
	content: "";
}

.link-button.wht,
.link-button.wht::before {
	background: rgb(var(--wht));
	color: rgb(var(--blk));
}

.link-button.blk,
.link-button.blk::before {
	background: rgb(var(--blk));
	color: rgb(var(--wht));
}

.link-button.large {
	background: rgb(var(--wht));
	width: min(72rem, 56.25vw);
	height: min(7rem, 5.469vw);
	color: rgb(var(--blk));
	font-size: min(1.8rem, 1.406vw);
	border-radius: min(7rem, 5.469vw);
}

.link-button.large::before {
	display: none;
}

.link-button.large::after {
	width: calc(100% - min(1rem, 0.781vw));
	height: calc(100% - min(1rem, 0.781vw));
	border: solid 1px rgb(var(--blk));
	border-radius: min(7rem, 5.469vw);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.link-button.large svg {
	width: min(1.3rem, 1.016vw);
	height: auto;
	fill: none;
	stroke: rgb(var(--blk));
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5px;
	position: absolute;
	top: 50%;
	right: min(3.7rem, 2.891vw);
	transform: translateY(-50%);
}


.link-button.end {
	border-radius: 0.8vw;
	pointer-events: none;
}

.link-button.end::before {
	display: none
}
.link-button.end::after {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 0.8vw;
	position: absolute;
	top: 0;
	left: 0;
	content: "販売は終了いたしました";
	text-align: center;
	color: white;
	padding: .7em 0;
	background-color: #4d4d4d;
}

@media screen and (max-width: 768px) {
	.link-button {
		width: 54.667vw;
		height: 13.333vw;
		font-size: 4vw;
		border-radius: 0.8vw 0 0 0.8vw;
	}

	.link-button::before {
		width: 6.667vw;
		right: -6.667vw;
		right: -5.333vw;
	}

	.link-button.large {
		width: 64vw;
		height: 16vw;
		font-size: 3.733vw;
		border-radius: 16vw;
	}

	.link-button.large::after {
		width: calc(100% - 1.333vw);
		height: calc(100% - 1.333vw);
		border-radius: 16vw;
	}

	.link-button.large svg {
		width: 1.6vw;
		right: 4.8vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 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;
}