html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,menu,nav,section,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:rgba(0,0,0,0);font-style:normal;font-weight:normal}article,aside,details,figcaption,figure,footer,header,nav,section{display:block}ul,ol{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}img{font-size:0;line-height:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}a{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;background:rgba(0,0,0,0)}ins{background:#fff;color:#000;text-decoration:none}mark{background:#ff9;color:#000;font-style:normal;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted #000;cursor:help}table{border-collapse:collapse;border-spacing:0;word-break:break-all}fieldset,img{vertical-align:top;line-height:0}input,select{vertical-align:middle}html{height:100%;overflow-y:scroll}*{margin:0;padding:0}


/*共通*/

/*--Mac Safari対応-------*/
html {
height: 100vh;
}
/*-----------------------*/

:root {
	--color-black: #111;
	--color-red: #f11;
	--color-blue: #0084d4;
	--color-line-gray: #ddd;
	--font-w-bold: 600;
	--width-base: 1400px;
}
body {
	height: 100%;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;
	font-feature-settings: "palt";
	word-wrap: break-word;
	line-height: 1.8;
	font-weight: 400;
	color: #333;
	container-type: inline-size;
}
a {
	color: var(--color-blue);
	text-decoration: none;
	@media (any-hover:hover) {
		transition: opacity .3s;
		&:hover {
			opacity: .5;
		}
	}
}
span, a {
	font-weight: inherit;
}
input, textarea, select, button {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	-webkit-appearance : none;
}
button {
	background: transparent;
	border: none;
	cursor: pointer;
}
.textCenter { text-align: center;}
.textRight { text-align: right;}
.sp-none { @media (width<=767px) { display: none;}}
.pc-none { @media (width>=768px) { display: none;}}

footer {
	padding: 94px 20px 71px;
	text-align: center;
	color: #fff;
	background: var(--color-black);
	& a {
		color: inherit;
	}
	.logo {
		height: 91px;
		aspect-ratio: 248 / 91;
		margin: 0 auto;
	}
	dt {
		margin-top: 82px;
		font-weight: var(--font-w-bold);
		font-size: 18px;
	}
	dd {
		margin-top: 8px;
	}
	.links {
		margin-top: 12px;
	}
	.sns {
		padding-top: 53px;
		display: flex;
		justify-content: center;
		gap: 0 30px;
		& img {
			height: 100%;
			width: auto;
		}
		a {
			height: 31px;
			display: block;
		}
	}
@media (width<=767px) {
	font-size: 14px;
	.logo {
		height: 70px;
	}
}
}


.accessBlock, .contactBlock {
	& h2 {
		margin-bottom: 30px;
		font-size: 36px;
		font-weight: var(--font-w-bold);
		text-align: center;
	}
	.txt {
		width: fit-content;
		margin: 0 auto 60px;
		padding: 0 min(40/768*100cqw);
	}
	& img, & iframe {
		width: 100%;
		height: 400px;
		display: block;
	}
@media (width>=1000px) {
	display: flex;
	align-items: center;
	border-top: 1px solid #ddd;
	& h2 {
		font-size: 44px;
		margin-bottom: 60px;
	}
	.txt {
		margin: 0 auto;
		padding-bottom: 20px;
	}
	& img, & iframe {
		width: 50%;
		height: 600px;
	}
}
}
.contactBlock {
	margin-top: 100px;
	& p {
		margin-bottom: 34px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	& img {
		object-fit: cover;
	}
@media (width>=1000px) {
	margin-top: 202px;
	& img {
		border-left: 1px solid #ddd;
	}
}
}
.accessBlock {
	margin-top: 100px;
	dt {
		margin-top: 1.7em;
		font-weight: var(--font-w-bold);
		text-align: center;
	}
@media (width>=1000px) {
	margin: 0;
	& iframe {
		order: -1;
		border-right: 1px solid #ddd;
	}
}
}


#pagetop a {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 60px;
	right: 12px;
	font-size: 0;
	line-height: 0;
	text-indent: -9999px;
	overflow: hidden;
	background: var(--color-black);
	z-index: 100;
	&::before {
		content: "";
		display: block;
		width: 34px;
		height: 20px;
		background: #fff;
		clip-path: polygon(50% 0, 100% 87%, 93% 100%, 50% 23%, 7% 100%, 0 87%);
	}
@media (width<=767px) {
	bottom: 12px;
}
}


#header {
	width: 100%;
	height: 60px;
	padding: 15px 0 0;
	box-sizing: border-box;
	background: #fff;
	position: fixed;
	z-index: 1000;
	& a {
		color: inherit;
		display: block;
	}
	.logo {
		height: 30px;
		aspect-ratio: 177/40;
		margin: 0 auto;
	}
@media (width>=768px) {
	height: 80px;
	padding: 19px 0 0;
	.logo {
		height: 40px;
	}
}
}


#area-nav {
	h2 {
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		overflow: hidden;
	}
	.navBtn {
		width: 40px;
		height: 28px;
		box-sizing: border-box;
		border-top: 4px solid var(--color-blue);
		border-bottom: 4px solid var(--color-blue);
		position: fixed;
		top: 27px;
		right: 30px;
		z-index: 2000;
		transition: border .2s;
		&::before, &::after {
			content: "";
			display: block;
			width: 100%;
			height: 4px;
			background: var(--color-blue);
			position: absolute;
			inset: 0;
			margin: auto;
			transition: all .2s;
		}
		&.open {
			border-color: transparent;
			&::before, &::after { background: #fff;}
			&::before { rotate: 45deg;}
			&::after { rotate: -45deg;}
		}
	}
	#nav {
		width: 100%;
		height: 100%;
		padding: 86px min(40/768*100cqw) 0;
		box-sizing: border-box;
		background: url(../img/menu_bg.jpg) no-repeat #0084d4;
		background-size: 100% auto;
		background-position: right bottom;
		position: fixed;
		top: 0;
		right: -10%;
		opacity: 0;
		pointer-events: none;
		z-index: 1500;
		transition: right .6s, opacity .5s;
		&.open {
			right: 0;
			pointer-events: auto;
			opacity: 1;
		}
		ul {
			max-width: 1200px;
			margin: 0 auto;
		}
		li {
			margin-top: 37px;
			a {
				width: fit-content;
				height: 43px;
				padding-left: 9px;
				display: flex;
				align-items: center;
				color: #fff;
				font-size: 26px;
				&::before {
					content: "-";
					display: block;
					margin-right: .3em;
					margin-bottom: 2px;
				}
				@media (any-hover: hover) {
					opacity: 1;
					span::after {
						transition: width ease-in-out .3s .1s;
					}
					&:hover span::after {
						width: 100%;
						left: 0;
						right: auto;
						transition: width ease-in-out .4s;
					}
				}
			}
			span {
				height: 100%;
				line-height: 1;
				padding-bottom: 2px;
				box-sizing: border-box;
				display: flex;
				align-items: center;
				position: relative;
				&::after {
					content: "";
					display: block;
					width: 0;
					height: 1px;
					background: #fff;
					position: absolute;
					bottom: 0;
					left: auto;
					right: 0;
				}
			}
		}
		#nav-logo {
			max-width: 1200px;
			margin: 0 auto 117px;
			display: block;
			img {
				height: 74px;
				aspect-ratio: 177/40;
				margin-left: -13px;
			}
		}
	}
@media (width<=768px) {
	.navBtn {
		top: 16px;
		right: 20px;
	}
	#nav {
		padding-top: 50px;
		background-size: 150% auto;
		background-position: 80% bottom;
		li {
			margin-top: 10px;
			a {
				font-size: 18px;
			}
		}
		#nav-logo {
			margin-bottom: 50px;
			img {
				height: 60px;
			}
		}
	}
}
}


#topicpath {
	max-width: var(--width-base);
	padding: 0 min(calc(40/768*100cqw), 40px);
	margin: 0 auto;
	margin-bottom: 95px;
	font-size: 14px;
	display: flex;
	gap: 0 .8em;
	& li + li {
		display: flex;
		align-items: center;
		&::before {
			content: "";
			display: block;
			width: 9px;
			height: 12px;
			margin-right: .6em;
			background: #000;
			clip-path: polygon(20% 0, 100% 50%, 20% 100%, 0% 100%, 80% 50%, 0% 0%);
		}
	}
}


main {
	padding-top: 60px;
@media (width>=768px) {
	padding-top: 80px;
}
}


.mainarea {
	& header {
		height: 160px;
		margin-bottom: 25px;
		color: #fff;
		background: url(../img/visual_bg.jpg) no-repeat 80% 0 / auto 100%;
		display: flex;
		align-items: center;
		h1 {
			width: 100%;
			max-width: var(--width-base);
			margin: 0 auto;
			padding: 0 min(calc(40/768*100cqw), 40px);
			font-size: 26px;
			font-weight: var(--font-w-bold);
		}
	}
@media (width>=768px) {
	& header {
		height: 320px;
		background-position: center 0;
		h1 {
			padding-bottom: 3px;
			font-size: 44px;
			font-weight: var(--font-w-bold);
			text-indent: 4px;
		}
	}
}
}


.contents {
	max-width: var(--width-base);
	padding: 0 min(calc(40/768*100cqw), 40px);
	margin: 0 auto;
/*@media (width>=768px) {
	padding: 0 40px;
}*/
}


/* module */
.disc {
	text-align: left;
	& li {
		padding-left: 1em;
		text-indent: -1em;
		&::before {
			content: "・";
		}
	}
}
.btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 20px;
	& a, & button {
		width: min(100%, 300px);
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--color-black);
		border: 1px solid var(--color-black);
		background: transparent;
		color: #fff;
		box-sizing: border-box;
		position: relative;
		&::before {
			content: "";
			display: block;
			width: 100%;
			height: 100%;
			background: var(--color-black);
			position: absolute;
			top: 0;
			left: 0;
			z-index: -1;
			transition: width .3s;
		}
		@media (any-hover: hover) {
			opacity: 1;
			transition: color .3s;
			&:hover {
				color: var(--color-black);
				&::before {
					width: 0;
					right: 0;
					left: auto;
				}
			}
		}
	}
}


/*Footer sns part*/
#area-footer .sns{
	display:none;
}
