@charset "utf-8";
:root {
	--mainColor: #246;
	--nav: #224466;
	--menuBtn: #93b4d3;
	--lightColor1: #5F8B97;
	--lightColor2: #cde7ee;
	--lightColor3: #f5fcfc;
	--lightColor4: #bdc9e5;
	--lightColor5: #d8f2fb;
	--lightColor6: #f7fbee;
	--accentColor1: #3456a3;
	--accentColor2: #37a9d4;
	--inquiry: #e7aa73;
	--marker: #f0fbd8;
}

main{
	letter-spacing: 0.06em;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.5em;
}
h3,h4{
	line-height: 1.5em;
}
main a{
	position: relative;
	display: block;
}
main a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
}
main a:hover::before {
	opacity: 0.3;
	transition: 0.5s;
}
a.linkUnderLine{
	display: inline;
	text-decoration: underline;
	width: fit-content;
}
main a[target="_blank"]:not(.solutionLinksWrap a) span::after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
	padding-left: 5px;
}
/* ナビゲーションボタン */
nav{
	width: 100%;
	position: sticky;
	top: 90px;
	z-index: 5;
}
nav ul{
	width: min(100%, 1000px);
	margin: 0 auto;
}
nav ul li{
	flex: 1;
}
nav ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 10px;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
}
main nav ul li a:hover::before{
	height: calc(100% + 6px);
	top: -3px;
}
.navBox{
	border-top: 3px solid var(--nav);
	border-bottom: 3px solid var(--nav);
	background: var(--nav);
}
.spMenuBtn{
	display: none;
}
.menuList li{
	border-left: 1px solid #fff;
}
.menuList li:last-child{
	border-right: 1px solid #fff;
}
.flexBox{
	display: flex;
}
.pc{
	display: inline;
}
.sp{
	display: none;
}
.inner{
	width: min(95% ,1000px);
	margin: 0 auto;
}
/*フォントサイズ・スタイル*/
.fontLarge{
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 21px, 25px);
}
.fontMedium{
	font-size: clamp(16px, (100vw - 600px) * 6 / 600 + 18px, 20px);
}
.fontSmall{
	font-size: 16px;
}
.annotation{
	font-size: 14px;
	line-height: 1.2em;
}
.annotation li{
	display: flex;
	gap: 5px;
}
.annotation.numbers span{
	display: block;
	width: 54px;
}
.annotation.numbers p{
	flex: 1;
}
.annotation.kome span{
	display: block;
	width: 15px;
}
.annotation.kome p{
	flex: 1;
}
.fontBold{
	font-weight: 550;
}
.marker{
	background: var(--marker);
}

/* お問い合わせ */
section.inquiry div.flexBox{
	width: min(95% ,1000px);
	border-radius: 5px;
	padding: 20px;
	margin: 20px auto;
	text-align: center;
	gap: 20px;
	align-items: center;
	justify-content: center;
	background: #ebeeef;
	background: repeating-linear-gradient(-45deg, rgba(200, 200, 220, 0.2) 0 10px, transparent 10px 20px), #eeeeee;
}
section.inquiry div div p{
	font-size: clamp(16px,(100vw - 600px)* 6 / 600 + 17px, 18px);;
}
section.inquiry div.flexBox a{
	width: min(100% ,400px);
	border-radius: 5px;
	padding: 30px 10px;
	background: var(--inquiry);
}
section{
	width: 100%;
}
section.mv{
	width: 100%;
}
div.sectionInner{
	width: min(95% ,1000px);
	margin: 0 auto;
}
/* トップへ戻るボタン */
.topPage{
	position: relative;
	opacity: 0;	visibility: hidden;	
	transition: all 1s;
}
.is-active{
	display: block;
	opacity: 1;
	visibility: visible;
}
.topPage p{
	background: var(--mainColor);
	position: fixed;
	z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	bottom: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 100px;
	padding-bottom: 10px;
}
.topPage p::before{
	font-family: "Font Awesome 5 Free";
	content:"\f077";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
}
.topPage p:hover{
	cursor : pointer;
	background: #526980;
}
@media (max-width: 1020px){
	.navBox ul li:first-child{
		border-left: none;
	}
	.navBox ul li:last-child{
		border-right: none;
	}
}
@media (max-width: 960px){
	nav{
		top: 60px;
	}
}
@media (max-width: 715px){
	nav{
		position: fixed;
		z-index: 55;
	
	}
	.navBox{
		position: relative;
		border-top: none;
		border-bottom: none;
		background: none;
		margin-bottom: 50px;
		z-index: 54;
	}
	.spMenuBtn{
		position: fixed;
		display: block;
		width: 100%;
		background: var(--nav);
		color: #fff;
		text-align: center;
		padding: 15px 5px;
		box-shadow: 0 2px 5px #666;
		cursor: pointer;
		z-index: 53;
	}
	.spMenuBtn::after{
		font-family: "Font Awesome 5 Free";
		content: "\f0d7";
		font-size: 100%;
		color: currentColor;
		padding-left: 10px;
	}
	.menuList{
		box-shadow: 0 2px 5px #666;
		flex-direction: column;
		position: absolute;
		z-index: 52;
		transition: all 0.5s;
	}
	.menuList li{
		background: var(--menuBtn);
		border-left: none;
	}
	.menuList li:not(.menuList li:last-child){
		border-bottom: 1px solid #fff;
	}
	.menuList li:last-child{
		border-right: none;
	}
	.menuList .sp{
		display: none;
	}
	.menuList li a:hover::before {
		height: 100%;
		top: 0;
	}
	.menuList li a{
		padding: 15px 5px;
		color: #333;
	}
}
