@charset "UTF-8";

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 980px) {
	html {
		font-size: 1.020408vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.333333vw;
	}
}
body {
	font-size: 1.5rem;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
}
body.fixed {
	overflow: hidden;
	width: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	body {
	font-size: 3rem;
	}
}
a {
	color: #333;
	text-decoration: none;
}
a,
a img {
	transition: opacity 0.3s ease-out;
}
a:hover,
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 {
	margin: 0 auto;
	max-height: 100%; /*for android*/
}
.sp {
	display: none;
}
/*非表示設定*/
.invisible {
	display: none;
}
@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}
button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family:inherit;
	cursor: pointer;
}
button:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 1px;
}
button.header-lang:focus-visible {
	outline: auto;
}

/* navArea */
.navArea {
	position: sticky;
	top: 0;
	z-index: 999;
}
.navArea nav {
	background: #fff;
	border-top: solid 1px #0064B4;
	border-bottom: solid 1px #0064B4;
	padding: 1rem 0;
}
.navArea nav .inner {
	max-width: 86rem;
	margin: 0 auto;
}
.navArea nav ul {
	display: flex;
	justify-content: center;
}
.navArea nav ul li {
	padding: 0.5rem 0;
}
.navArea nav ul li + li {
	border-left: solid 1px #666;
}
.navArea nav ul li a {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	color: #666;
	padding: 0 4.7rem;
}
@media (max-width: 768px) {
	.tks-theme-com-simple-page__header .header-nav {
		margin-right: 6rem;
	}

	.menuBtn {
		position: fixed;
		z-index: 1000;
		top: 2rem;
		right: 2rem;
		width: 4.2rem;
		height: 3rem;
		cursor: pointer;
		background: none;
		border: none;
		outline: none;
	}
	button.menuBtn:focus-visible {
		outline: auto;
	}
	.menuBtn span {
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #0064B4;
		border-radius: 0.5rem;
	}
	.menuBtn span:nth-of-type(2) {
		top: 1.5rem;
	}
	.menuBtn span:last-of-type {
		top: 3rem;
	}
	.menuBtn.active {
		top: 4rem;
		right: 5rem;
		height: 4.2rem;
	}
	.menuBtn.active span {
		height: 2px;
		background-color: #fff;
		border-radius: 0;
	}
	.menuBtn.active span:first-of-type {
		top: 2.2rem;
		transform: translateY(-6px) rotate(-45deg);
	}
	.menuBtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menuBtn.active span:last-of-type {
		top: 2.2rem;
		transform: translateY(-6px) rotate(45deg);
	}
	.navArea {
		z-index: 10005;
	}
	.navArea nav {
		position: fixed;
		display: none;
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100vh;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: #0064B4;
		overflow-y: scroll;
		border-top: none;
		border-bottom: none;
		padding: 0;
	}
	.navArea nav .inner {
		max-width: 100%;
		padding: 0;
	}
	.navArea nav ul {
		flex-direction: column;
		padding: 3.5rem 8rem 8rem 8rem;
	}
	.navArea nav ul li {
		padding: 0;
	}
	.navArea nav ul li + li {
		border-left: none;
		border-top: solid 1px #fff;
	}
	.navArea nav ul li a {
		display: block;
		font-size: 4rem;
		font-weight: 600;
		text-align: left;
		color: #fff;
		padding: 7rem 0 2rem;
	}
	.navArea nav ul li:last-child {
		border-bottom: solid 1px #fff;
	}
}

/* pagetop */
.pagetop {
	width: 5.9rem;
	border-radius: 50%;
	box-shadow: 0px 0px 1.6rem -0.6rem rgba(0,0,0,0.6);
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	z-index: 1000;
}
@media (max-width: 768px) {
	.pagetop {
		width: 10rem;
		right: 2rem;
		bottom: 2rem;
		z-index: 900;
	}
}