@charset "utf-8";
:root {
	--mainColor: #0b96b2;
	--lightColor1: #dcf3f7;
	--lightColor2: #44c2db;
	--lightColor3: #57aaba;
}
main{
	letter-spacing: 0.06em;
	box-sizing: border-box;
	font-size: 16px;
	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 p{
	width: 100%;
}
a.linkUnderLine{
	text-decoration: underline;
	width: fit-content;
}
main a[href$=".pdf"] p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f1c1";
	font-weight: 500;
	font-size: 150%;
	color: #f00;
	margin-right: 5px;
}
main a[target="_blank"] p::after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: 900;
	font-size: 90%;
	color: currentColor;
	padding-left: 5px;
}
table{
	border-collapse: collapse;
}
th,td{
	box-sizing: border-box;
}
/* ナビゲーションボタン */
main nav{
	width: 100%;
	position: sticky;
	top: 90px;
	z-index: 5;
}
main nav ul{
	width: min(100%, 1000px);
	margin: 0 auto;
}
main nav ul li{
	flex: 1;
}
main nav ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	text-align: center;
	width: 100%;
	height: 100%;
	font-weight: 500;
	text-shadow: 2px 2px 2px #444;
	color: #fff;
}
main nav ul li a:hover::before {
	height: calc(100% + 6px);
	top: -3px;
}
.navBox{
	border-top: 3px solid var(--lightColor3);
	border-bottom: 3px solid var(--lightColor3);
	background: var(--lightColor3);
	box-shadow: 0 2px 5px #666;
}
.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;
}
/*フォントサイズ・スタイル*/
.fontLarge{
	font-size: clamp(18px, (100vw - 600px) * 6 / 600 + 21px, 25px);
}
.fontMedium{
	font-size: clamp(16px, (100vw - 600px) * 6 / 600 + 18px, 20px);
	line-height: 1.5em;
}
.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;
}

/* お問い合わせ */
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-image: repeating-linear-gradient(-45deg,#f7f9f9, #f7f9f9 2px,transparent 0, transparent 4px);
}
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: #425275;
	color: #fff;
}
a.inquiryBtn{
	width: min(100% ,400px);
	border-radius: 5px;
	padding: 30px 10px;
	background: #425275;
	color: #fff;
}
a.inquiryBtn p{
	font-size: clamp(18px,(100vw - 600px)* 6 / 600 + 19px, 20px);
	text-align: center;
}
/* リンクボタン */
.linkBtn{
	width: min(100% ,500px);
	border-radius: 5px;
	background: var(--lightColor3);
	color: #fff;
	font-weight: 700;
	padding: 20px;
	margin: 0 auto;
	text-align: center;
	text-shadow: 2px 2px 2px #444;
}
section{
	width: 100%;
}
section.mv{
	width: 100%;
}
div.sectionInner{
	width: min(95% ,1000px);
	margin: 0 auto;
}
div.btnArea{
	width: 100%;
	margin: 0 auto;
	gap: 20px;
	justify-content: center;
}
div.btnArea a{
	width: min(50% ,418.5px);
	padding: 10px 30px;
	background: #51555e;
	color: #fff;
	border-radius: 5px;
	text-align: center;
}
/* トップへ戻るボタン */
.topPage{
	position: relative;
	opacity: 0;	visibility: hidden;	
	transition: all 1s;
}
.is-active{
	display: block;
	opacity: 1;
	visibility: visible;
}
.topPage p{
	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;
	background: var(--mainColor);
}
.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: var(--lightColor2);
}

@media (max-width: 1020px){
	.navBox ul li:first-child{
		border-left: none;
	}
	.navBox ul li:last-child{
		border-right: none;
	}
}
@media (max-width: 960px){
	h1{
		margin-top: 60px;
	}
	main nav{
		position: fixed;
		z-index: 55;
		top: 60px;
	}
	.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(--lightColor3);
		text-align: center;
		padding: 15px 5px;
		box-shadow: 0 2px 5px #666;
		text-shadow: 2px 2px 2px #444;
		color: #fff;
		font-size: 18px;
		font-weight: 500;
		cursor: pointer;
		z-index: 53;
	}
	.spMenuBtn::after{
		font-family: "Font Awesome 5 Free";
		content: "\f0d7";
		font-size: 100%;
		font-weight: 700;
		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(--lightColor1);
		border-left: none;
	}
	.menuList li:not(.menuList li:last-child){
		border-bottom: 1px solid #999;
	}
	.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;
		text-shadow: none;
		color: #444;
	}
}
@media (max-width: 800px){
	div.btnArea a{
		width: min(100% ,418.5px);
	}
}
@media (max-width: 700px){
	.sp{
		display: inline;
	}
	div.btnArea a{
		padding: 10px 20px;
	}
}
@media (max-width: 655px){
	section.inquiry div.flexBox{
		flex-direction: column;
		padding: 20px 10px;
	}
}