@charset "utf-8";

/*----------------------------
	common
------------------------------*/
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1100px) {
	html { 
		font-size: 0.909090vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.333333vw;
	}
}
body {
	overflow-wrap: anywhere;
}
main {
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	color: #000;
	letter-spacing: 0.04em;
}
@media (max-width: 768px) {
	main {
		font-size: 3.2rem;
		line-height: 1.8;
	}
}
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;
}
a {
	color: #333;
	text-decoration: none;
}
a,
button {
	transition: opacity 0.3s ease-out;
}
a:hover,
button:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* スクリーンリーダー用 */
.srOnly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* for safari */
/* @supports (-webkit-hyphens: none) {
	[tabindex="-1"]:focus-visible {
		outline: none !important;
	}
} */
.wrapper {
	margin: 0 auto;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

.txtRed {
	color: #CF0000;
}

/* inner */
.inner {
	max-width: 90rem;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.inner {
		max-width: 100%;
		padding: 0 3.5rem;
	}
}

/* sec */
.sec .box {
	background: #fff;
	border-radius: 3rem;
}

/* noteWrap */
.noteWrap {
	margin: 7rem auto;
}
.noteWrap li {
	font-size: 1.3rem;
	line-height: 1.75;
	text-indent: -1em;
	padding-left: 1em;
	font-weight: 500;
}
@media (max-width: 768px) {
	.noteWrap {
		margin: 7rem auto;
	}
	.noteWrap li {
		font-size: 2.2rem;
	}
}

/* pageTop */
.pageTop {
	position: fixed;
	width: 9.8rem;
	height: 9.8rem;
	bottom: 2rem;
	right: max(2rem, calc(50% - 65rem));
	z-index: 20;
}
.pageTop a {
	display: block;
}
@media (max-width: 768px) {
	.pageTop {
		right: 2rem;
	}
}
