@charset "utf-8";

/*----------------------------
	common
------------------------------*/
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1280px) {
	html {
		font-size: 0.781vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3333vw;/*750pxの時のベース*/
	}
}
body {
	overflow-wrap: anywhere;
}
main {
	font-size: 1.6rem;
	line-height: 1.75;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}
@media (max-width: 768px) {
	main {
		font-size: 2.3rem;
		line-height: 1.65;
	}
}
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: #000;
	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;
	}
} */
.rougeScript {
	font-family: "Rouge Script", cursive;
	font-weight: 400;
}
.inner {
	margin: 0 auto;
	max-width: 128rem;
}
a[href^="tel:"]{
	text-decoration: none;
	cursor: none;
	pointer-events: none;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	a[href^="tel:"] {
		text-decoration: underline;
		cursor: pointer;
		pointer-events: auto;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}
