@charset "utf-8";
/* --------------------------------
	common
-------------------------------- */

* {
	box-sizing: border-box;
}
body {
	overflow-wrap: anywhere;
	color: black;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	font-size: 16px;
	line-height: 1.5;
}

.serif {
	font-family: "Noto Serif CJK JP", serif;
}

a,
em {
	color: inherit;
	font-weight: inherit;
}

a {
	text-decoration: none;
	transition: opacity 0.2s ease-out;
}

a:hover {
	opacity: 0.7;
}

a[href^="tel:"] {
	cursor: auto;
}

a[href^="tel:"]:hover {
	opacity: 1;
}

em {
	font-weight: bold;
}

img,
a img {
	vertical-align: top;
}

img {
	max-width: 100%;
}

.sp {
	display: none;
}

button, input, select, textarea {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
button {
	cursor: pointer;
}
textarea {
	resize: vertical;
}
/* スクリーンリーダー用 */
.srOnly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (-webkit-min-device-pixel-ratio: 1.5) and (max-device-width: 768px) {
	a {
		transition: none;
	}

	a:hover {
		opacity: 1;
	}
}

@media screen and (max-width: 750px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

}

/* pageList */
.pageListWrap {
	display: block;
	margin: 0 auto;
	max-width: 1380px;
	width: 100%;
}
.pageList {
	display: flex;
	gap: 0 10px;
	padding: 0 60px;
}
.pageList li {
	flex: 1;
	min-width: 0;
}
.pageList li:last-child {
	flex: 1.3;
}
.pageList li a {
	display: block;
	border: solid 5px #c6111a;
	border-bottom: none;
	border-radius: 20px 20px 0 0;
	padding: 5px;
	font-size: 39px;
	font-weight: 700;
	text-align: center;
	background-color: #fff;
	color: #c6111a;
}
.pageList li.current a {
	background-color: #c6111a;
	color: #fff;
}
.pageList li a:hover {
	opacity: 1;
}
.pageList li a:hover {
	background-color: #c6111a;
	color: #fff;
}
@media screen and (max-width: 1380px) {
	.pageList {
		gap: 0 0.725vw;
		padding: 0 4.348vw;
	}
	.pageList li a {
		border: solid 0.362vw #c6111a;
		border-bottom: none;
		border-radius: 1.449vw 1.449vw 0 0;
		padding: 0.362vw;
		font-size: 2.826vw;
	}
}
@media screen and (max-width: 750px) {
	.pageList {
		gap: 0 0.667vw;
		padding: 0 4.4vw;
	}
	.pageList li a {
		border: solid 0.4vw #c6111a;
		border-bottom: none;
		border-radius: 1.333vw 1.333vw 0 0;
		padding: 0.667vw;
		font-size: 2.8vw;
	}
}


/* container
--------------- */
.container {
	display: block;
	margin: 0 auto;
	max-width: 1380px;
	width: 100%;
}

.color1 {
	color: #c11e1a;
}

.redTxt {
	color: #e60a11;
}

.indent1 li {
	padding-left: 1em;
	text-indent: -1em;
}

/* note
--------------- */
#note {
	margin: 60px 40px;
}

#note .container {
	padding-right: 32px;
	padding-left: 32px;
}

#note ul li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.6;
}

#note ul li.fwB {
	text-decoration: underline 3px;
	text-decoration-color: #f00;
}

#note .border {
	margin-top: 20px;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	border: solid 1px #000;
	padding: 5px;
}


@media screen and (max-width: 1380px) {
	#note {
		margin: 4.348vw 2.899vw;
	}
	#note .container {
		padding-right: 2vw;
		padding-left: 2vw;
	}
	#note ul li {
		font-size: 1.377vw;
	}
	#note .border {
		margin-top: 1.449vw;
		font-size: 1.594vw;
		font-weight: 600;
		text-align: center;
		border: solid 1px #000;
		padding: 0.362vw;
	}
}

@media screen and (max-width: 750px) {
	#note {
		margin: 4vw 0;
	}

	#note .container {
		padding-right: 4.267vw;
		padding-left: 4.267vw;
	}

	#note ul li {
		font-size: 2.4vw;
	}
	#note ul li.fwB {
		text-decoration: underline 0.4vw;
		text-decoration-color: #f00;
	}
	#note .border {
		margin-top: 4vw;
		font-size: 2.933vw;
		padding: 2vw;
	}
}

/* pageTop */
.pageTopBtn {
	position: fixed;
	padding-top: 35px;
	bottom: 20px;
	right: 20px;
	width: 115px;
	height: 115px;
	border: solid 2px #c6111a;
	background-color: #fff;
	border-radius: 50%;
	font-size: 33px;
	color: #c6111a;
	text-align: center;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.pageTopBtn::before,
.pageTopBtn::after {
	content: "";
	position: absolute;
	top: 20px;
	left: calc(50% - 1px);
	width: 2px;
	height: 28px;
	border-radius: 9999px;
	background-color: #231815;
	transform-origin: 50% 1px;
}
.pageTopBtn::before {
	transform: rotate(25deg);
}
.pageTopBtn::after {
	transform: rotate(-25deg);
}
.pageTopBtn.isVisible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
@media screen and (max-width: 1380px) {
	.pageTopBtn {
		padding-top: 2.536vw;
		bottom: 1.449vw;
		right: 1.449vw;
		width: 8.333vw;
		height: 8.333vw;
		border: solid 0.145vw #c6111a;
		font-size: 2.391vw;
	}
	.pageTopBtn::before,
	.pageTopBtn::after {
		top: 1.449vw;
		left: calc(50% - 0.072vw);
		width: 0.145vw;
		height: 2.029vw;
		border-radius: 724.565vw;
		transform-origin: 50% 1px;
	}
}
@media screen and (max-width: 750px) {
	.pageTopBtn {
		padding-top: 4.667vw;
		bottom: 2.667vw;
		right: 2.667vw;
		width: 15.333vw;
		height: 15.333vw;
		border: solid 0.267vw #c6111a;
		font-size: 4.4vw;
	}
	.pageTopBtn::before,
	.pageTopBtn::after {
		top: 2.667vw;
		left: calc(50% - 0.133vw);
		width: 0.267vw;
		height: 3.733vw;
		border-radius: 1333.2vw;
	}
}