@charset "UTF-8";

/*----------------------------
	common
------------------------------*/
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 {
	overflow-wrap: anywhere;
}
main {
	font-size: 1.5rem;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
}
@media (max-width: 768px) {
	main {
		font-size: 3rem;
	}
}
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;
	}
} */

.sp {
	display: none;
}
@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}
/* 
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;
	}
	
	body {
		overflow-x: clip;
	}
	/* メニューオープン時のbody */
	body.menuOpen {
		overflow: clip;
	}
	.menuBtn {
		position: fixed;
		z-index: 1000;
		top: 10px;
		right: 2rem;
		width: 4.2rem;
		height: 4.2rem;
		cursor: pointer;
		background: none;
		border: none;
		outline: none;
	}
	button.menuBtn:focus-visible {
		outline: auto;
	}
	.bar,
	.bar::before,
	.bar::after {
		width: 100%;
		height: 0.6rem;
		background-color: #0064B4;
		transition: transform 0.3s;
		border-radius: 0.5rem;
	}
	.bar {
		display: grid;
	}
	.bar::before ,
	.bar::after {
		content: "";
		grid-area: 1 / 1;
	}
	.bar::before {
		transform: translateY(-1.6rem);
	}
	.bar::after {
		transform: translateY(1.6rem);
	}
	.menuOpen .bar {
		background-color: transparent;
	}
	.menuOpen .bar::before {
		transform: rotate(45deg);
		background-color: #fff;
	}
	.menuOpen .bar::after {
		transform: rotate(-45deg);
		background-color: #fff;
	}
	#overlay {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100%;
		background: #0064B4;
		z-index: 997;
		transition: opacity 0.3s;
	}
	.menuOpen #overlay {
		visibility: visible;
		opacity: 1;
	}
	#menu {
		position: fixed;
		width: 100%;
		height: 100vh;
		background-color: #0064B4;
		right: 0;
		top: 0;
		z-index: 998;
		overflow-y: auto;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.menuOpen #menu {
		opacity: 1;
	}
	.navArea {
		z-index: 10005;
	}
	.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;
	}
}