@charset "utf-8";
:root {
	--mainColor: #f1be72;
	--subColor: #abced4;
	--lightColor1: #FBE5D6;
	--lightColor2: #e6f3f5;
	--lightColor3: #e5f0e1;
	--accentColor1: #d18005;
	--accentColor2: #2d8696;
}
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;
	display: inline;
}
main a[href$=".pdf"] p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f1c1";
	font-weight: 500;
	font-size: 150%;
	color: var(--accentColor2);
	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;
}
/* ナビゲーションボタン */
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: 10px;
	text-align: center;
	width: 100%;
	height: 100%;
}
main nav ul li a:hover::before {
	height: calc(100% + 6px);
	top: -3px;
}
.flexBox{
	display: flex;
}
.pc{
	display: inline;
}
.sp{
	display: none;
}
.inner{
	width: min(95% ,1000px);
	margin: 0 auto;
	padding-bottom: 50px;
}
/*フォントサイズ・スタイル*/
.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: 56px;
}
.annotation.numbers p{
	flex: 1;
}
.annotation.kome span{
	display: block;
	width: 15px;
}
.annotation.kome p{
	flex: 1;
}
.annotation.source{
	display: inline;
	text-align: right;
}
.annotation.source p{
	margin-top: 10px;
}
.fontBold{
	font-weight: 550;
}
.marker{
	background: #f8ea9c;
}
/* お問い合わせ */
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;
}
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;
	text-align: center;
	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;
}
footer{
	margin: 0 auto;
}
@media (max-width: 960px){
	nav{
		top: 60px;
	}
}
@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;
	}
}