@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap&text=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
:root {
	--delay: 200ms;
	--duration: 800ms;
	--iterations: 1;
	--mainColor: #002675;
	--fontColor: #05173F;
	--whiteFontColor: #EEF0F4;
	--hoverFontColor: #BFC1C4;
}

body {
	position: relative;
	background-color: #FFFFFF;
	font-family: Roboto, 'Noto Sans JP';
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	height: 130px;
	padding: 0 60px;
	overflow: hidden;
	z-index: 10;
	pointer-events: none;
}

#hLogoOuter {
	display: flex;
	align-items: center;
}

#hLogoOuter a {
	pointer-events: visible;
}

#hLogoOuter a img {
	width: 200px;
	height: auto;
}

#hNavOuter {
	display: flex;
	align-items: center;
}

#hNavOuter ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 40px;
}

#hNavOuter ul li {
	position: relative;
	padding: 5px 0;
	overflow: hidden;
}

#hNavOuter ul li:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	background-color: var(--fontColor);
	height: 1px;
	opacity: 0.0;
	transition: opacity .3s ease-out;
}

#hNavOuter ul li:hover:after {
	opacity: 1.0;
}

#hNavOuter ul li a {
	font-size: 16px;
	color: var(--fontColor);
	text-decoration: none;
	pointer-events: visible;
}

#hNavIcon {
	position: relative;
	display: none;
	opacity: 0.0;
	width: 50px;
	height: 50px;
	background-color: #FFFFFF;
	border-radius: 25px;
	box-shadow:
		5px 5px 10px rgba(0, 0, 0, 0.3),
		-5px -5px 10px rgba(255, 255, 255, 0.5);
	overflow: hidden;
}

#hNavIcon:hover {
	box-shadow: none;
}

#hNavIcon a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: var(--fontColor);
	font-size: 30px;
	line-height: 30px;	
	text-align: center;
	text-decoration: none;
	padding: 10px;
	pointer-events: visible;
}

#hNavIcon a:hover {
	background-color: var(--mainColor);
	color: #FFFFFF;
}

#overwrapNav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	background-color: #FFFFFF;
	padding: 130px 0;
	box-sizing: border-box;
	opacity: 0.0;
	overflow-y: auto;
	z-index: 9;
}

#overwrapNav nav {
	height: 100%;
}

#overwrapNav nav ul {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 0 30px;
	width: 100%;
	height: 100%;
	padding: 0 20%;
	box-sizing: border-box;
}

#overwrapNav nav ul li {
	min-width: 50%;
	height: 30%;
}

#overwrapNav nav ul li a {
	text-decoration: none;
}

#overwrapNav nav ul li a p {
	color: var(--fontColor);
	font-size: 16px;
}

#overwrapNav nav ul li a:hover p {
	color: var(--hoverFontColor);
}

#overwrapNav nav ul li a p:first-child {
	font-size: 55px;
	font-weight: 700;
	line-height: 73px;
}

#overwrapPrivacy {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	background-color: #FFFFFF;
	color: var(--fontColor);
	padding: 90px 100px 65px 100px;
	box-sizing: border-box;
	opacity: 0.0;
	overflow-y: auto;
	z-index: 12;
}

#overwrapPrivacy h2 {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 45px;
}

#overwrapPrivacy h3 {
	font-weight: 500;
	margin-top: 60px;
}

#overwrapPrivacy p {
	line-height: 30px;
	margin: 25px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

#overwrapPrivacy h3,
#overwrapPrivacy p {
	font-size: 16px;
}

#overwrapPrivacy ol {
	list-style-type: none;
}

#overwrapPrivacy ol ol li p {
	margin: 0 25px;
}

#closePrivacyIcon {
	position: fixed;
	top: 55px;
	right: 55px;
	width: 25px;
	height: 25px;
	overflow: hidden;
}

p#closePrivacyIcon {
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
	text-align: center;
	margin: 0;
}

#closePrivacyIcon a {
	display: block;
	color: var(--fontColor);
	text-decoration: none;
	pointer-events: visible;
}

#breadcrumb {
	margin: 40px 8% 0 8%;
}

#breadcrumb ol {
	list-style: none;
}

#breadcrumb li {
	display: inline;
	color: #4D5975;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 40px;
}

#breadcrumb li:after {
	content: '―';
	display: inline-block;
	color: #4D5975;
	padding: 0 1em;
}

#breadcrumb li:last-child:after {
	content: '';
}

#breadcrumb a {
	color: #4D5975;
	text-decoration: none;
}

#breadcrumb a:hover {
	font-weight: 500;
}

footer {
	position: relative;
	display: flex;
	justify-content: space-between;
	background-color: #05173F;
	padding: 90px 8% 130px 8%;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 9;
}

#fLogoOuter {
	display: flex;
	align-items: center;
}

#fLogoOuter a img {
	width: 200px;
	height: auto;
}

#fNavOuter {
	display: flex;
	align-items: center;
}

#fNavOuter ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 40px;
}

#fNavOuter ul li {
	position: relative;
	padding: 5px 0;
	overflow: hidden;
}

#fNavOuter ul li a {
	font-size: 16px;
	letter-spacing: 0.8px;
	color: var(--whiteFontColor);
	text-decoration: none;
}

#privacyPolicy {
	position: absolute;
	right: calc(117px + 8%);
	bottom: 70px;
}

#privacyPolicy a {
	text-decoration: none;
}

#fNavOuter ul li a:hover,
#privacyPolicy a:hover {
	color: var(--hoverFontColor);
}

#footerCopyright {
	position: absolute;
	right: 8%;
	bottom: 70px;
}

#privacyPolicy,
#footerCopyright {
	font-size: 11px;
}

#privacyPolicy a,
#footerCopyright {
	color: var(--whiteFontColor);
}

#pageTop {
	position: absolute;
	right: 35px;
	bottom: 70px;
	width: 52px;
	height: 50px;
	background: url(../images/scrollup_w.png) no-repeat center center;
	background-size: cover;
	border-radius: 50%;
	overflow: hidden;
	z-index: 11;
}

#pageTop:hover {
	background: url(../images/scrollup_g.png) no-repeat center center;
}

.btn {
	width: 275px;
	height: 75px;
	background-color: #FFFFFF;
	text-align: center;
	border-radius: 38px;
	box-shadow:
		5px 5px 10px rgba(0, 0, 0, 0.3),
		-5px -5px 10px rgba(255, 255, 255, 0.5);
	overflow: hidden;
}

.btn:hover {
	background-color: var(--mainColor);
	box-shadow: none;
}

.btn a {
	display: block;
	width: 100%;
	color: var(--fontColor);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 75px;
	text-decoration: none;
}

.btn a:hover {
	color: var(--whiteFontColor);
}

.resDisp {
	display: none;
}

.resDispNone {
	display: block;
}

@media only screen and (max-width: 1279px) {
	#overwrapNav nav ul li a p {
		font-size: 15px;
		margin-bottom: 5px;
	}

	#overwrapNav nav ul li a p:first-child {
		font-size: 50px;
		line-height: 65px;
	}

	#overwrapPrivacy h2 {
		font-size: 25px;
		margin-bottom: 25px;
	}

	#overwrapPrivacy h3 {
		margin-top: 50px;
	}

	#overwrapPrivacy h3,
	#overwrapPrivacy p {
		font-size: 15px;
	}

	#fNavOuter ul li a {
		font-size: 15px;
		letter-spacing: normal;
	}

	#privacyPolicy {
		right: calc(107px + 8%);
	}

	#pageTop {
		right: calc(5% - 26px);
	}

	.btn {
		width: 250px;
		height: 70px;
		border-radius: 35px;
	}

	.btn a {
		font-size: 15px;
		line-height: 70px;
	}

	.resDisp {
		display: none;
	}

	.resDispNone {
		display: block;
	}
}

@media only screen and (max-width: 1023px) {
	#overwrapNav nav ul li a p {
		font-size: 15px;
		margin-bottom: 5px;
	}

	#overwrapNav nav ul li a p:first-child {
		font-size: 45px;
		line-height: 57px;
	}
}

@media only screen and (max-width: 599px) {
	header {
		padding: 0 30px;
	}

	header nav ul {
		display: none !important;
	}

	#hNavIcon {
		display: block !important;
		opacity: 1.0 !important;
	}

	#overwrapNav {
		padding: 130px 0 0 0;
	}

	#overwrapNav nav {
		height: auto;
		min-height: 100%;
	}

	#overwrapNav nav ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		height: auto;
		min-height: 100%;
		padding: 0 30px 50px 30px;
	}

	#overwrapNav nav ul li {
		width: 100%;
		min-width: auto;
		height: auto;
		margin-bottom: 30px;
	}

	#overwrapNav nav ul li a p {
		font-size: 15px;
		margin-bottom: 5px;
	}

	#overwrapNav nav ul li a p:first-child {
		font-size: 30px;
		line-height: 39px;
	}

	#overwrapPrivacy {
		padding: 50px 30px;
	}

	#overwrapPrivacy h2 {
		font-size: 25px;
		margin-bottom: 25px;
	}

	#overwrapPrivacy h3 {
		margin-top: 50px;
	}

	#overwrapPrivacy p {
		margin: 25px 20px;
	}

	#overwrapPrivacy h3,
	#overwrapPrivacy p {
		font-size: 15px;
	}

	#overwrapPrivacy ol ol li p {
		margin: 0 20px;
	}

	#closePrivacyIcon {
		top: 30px;
		right: 30px;
		width: 20px;
		height: 20px;
	}

	p#closePrivacyIcon {
		font-size: 15px;
		line-height: 20px;
		margin: 0;
	}

	#breadcrumb {
		display: none;
	}

	footer {
		flex-direction: column;
		padding: 90px 30px 135px 30px;
	}

	#fLogoOuter {
		justify-content: center;
		margin: 0 0 60px 0;
	}

	#fNavOuter ul {
		justify-content: space-between;
		gap: 10px 25px;
		width: 100%;
	}

	#fNavOuter ul li a {
		font-size: 15px;
		letter-spacing: normal;
	}

	#privacyPolicy {
		right: 30px;
		bottom: 90px;
	}

	#footerCopyright {
		left: 30px;
		right: auto;
		bottom: 90px;
	}

	#pageTop {
		display: none;
	}

	.btn {
		width: 250px;
		height: 70px;
		border-radius: 35px;
	}

	.btn a {
		font-size: 15px;
		line-height: 70px;
	}

	.resDisp {
		display: block;
	}

	.resDispNone {
		display: none;
	}
}

/* Animation
--------------------------------------------------  */
.reveal-text {
	--animation-delay: var(--delay, 0);
	--animation-duration: var(--duration, 800ms);
	--animation-iterations: var(--iterations, 1);
	position: relative;
	-webkit-animation-name: clip-text;
	animation-name: clip-text;
	white-space: nowrap;
	cursor: default;
}

.reveal-text::after {
	content: '';
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--mainColor);
	transform: scaleX(0);
	transform-origin: 0 50%;
	pointer-events: none;
	-webkit-animation-name: text-revealer;
	animation-name: text-revealer;
}

.reveal-text,
.reveal-text::after {
	-webkit-animation-delay: var(--animation-delay, 2s);
	animation-delay: var(--animation-delay, 2s);
	-webkit-animation-iteration-count: var(--iterations, 1);
	animation-iteration-count: var(--iterations, 1);
	-webkit-animation-duration: var(--duration, 800ms);
	animation-duration: var(--duration, 800ms);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

@-webkit-keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

@keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

@-webkit-keyframes text-revealer {
	0%,
	50% {
		transform-origin: 0 50%;
	}

	60%,
	100% {
		transform-origin: 100% 50%;
	}

	60% {
		transform: scaleX(1);
	}

	100% {
		transform: scaleX(0);
	}
}

@keyframes text-revealer {
	0%,
	50% {
		transform-origin: 0 50%;
	}

	60%,
	100% {
		transform-origin: 100% 50%;
	}

	60% {
		transform: scaleX(1);
	}

	100% {
		transform: scaleX(0);
	}
}
