@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1200px) {
	html {
		font-size: 0.833vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3333vw;
	}
}
body {
	font-size: 1.8rem;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
}
@media (max-width: 768px) {
	body {
		font-size: 2.6rem;
	}
}
a {
	color: #333;
	text-decoration: none;
}
a img {
	transition: opacity 0.3s ease-out;
}
a img:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* a[href^="tel:"]:hover {
	opacity: inherit;
	color: inherit;
	cursor: default;
} */

.wrapper {
	max-height: 100%; /*for android*/
}

.sp {
	display: none;
}

/*非表示設定*/
/* .invisible {
	display: none;
} */

.mincho {
	font-family: "Shippori Mincho B1", serif;
	font-style: normal;
}
.leadBox {
	display: inline-block;
	position: relative;
}
.line {
	position: relative;
	margin: 0 auto;
	width: 1px;
	height: 16rem;
	background: transparent;
	transform: rotate(60deg);
	overflow: hidden;
	position: absolute;
}
.line::before {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	animation: flow 2s linear infinite;
}
@keyframes flow {
	0% {
		top: -100%;
	}
	100% {
		top: 100%;
	}
}

.fade {
	opacity: 0;
	transition: opacity 2s;
}
.fade.view {
	opacity: 1;
}

@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* topBnr */
.topBnr {
	margin: 0 auto 0;
	width: 60rem;
	padding: 10.5rem 0;
}
.topBnr .topTxt {
	font-weight: 600;
	line-height: 3.5rem;
	text-align: center;
}
.topBnr .bnrPic {
	margin-top: 2rem;
}
@media (max-width: 768px) {
	.topBnr {
		width: 45.2rem;
		padding: 10rem 0;
	}
	.topBnr .topTxt {
		font-size: 2.4rem;
		line-height: 3.9rem;
	}
	.topBnr .bnrPic {
		margin-top: 2rem;
	}
}