@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Noto+Sans+JP:wght@100..900&display=swap');
* {
		margin: 0;
		padding: 0;
}
html {
		overflow-y: scroll;
}
table {
		border-collapse: collapse;
}
img {
		border: none;
		vertical-align: top;
}
.clear {
		clear: both;
}
body {
		color: #00234B;
		font-size: 16px;
		font-family: "Roboto", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 1;
		-webkit-text-size-adjust: 100%;
		-webkit-font-smoothing: antialiased;
}
body.bodyLock, html.bodyLock {
		overflow: hidden
}
@media(max-width: 767px) {
		body {
				font-size: 15px;
		}
}
h1, h2, h3, h4, h5, h6 {
		font-weight: normal;
}
h1, h2, h3, h4, h5, p, li, dt, dd {
		font-feature-settings: "palt";
		letter-spacing: 0.05em;
}
.page_shell {
		overflow-x: clip;
}
/* ============== */
header {
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(255, 255, 255, 0.9);
		width: 100%;
		height: 88px;
		z-index: 1000;
		display: flex;
		align-items: center;
}
@media(max-width: 1500px) {
		header {
				height: 75px;
		}
}
.header_inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		box-sizing: border-box;
		padding: 0 40px;
}
.header_logo {
		width: 245px;
}
@media(max-width: 1200px) {
		.header_inner {
				padding: 0 30px;
		}
		.header_logo {
				width: 190px;
		}
}
.header_logo img {
		width: 100%;
		height: auto;
}
.desktop_global {
		display: flex;
		align-items: center;
}
.desktop_global ul {
		list-style: none;
		display: flex;
		align-items: center;
}
.desktop_global ul li {
		font-size: 15px;
		margin-left: 30px;
		font-weight: 500;
		height: 88px;
		display: flex;
		align-items: center;
}
.menu_parent {
		position: relative;
}
.menu_parent::before, .menu_parent::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 1px);
		right: -10px;
		width: 10px;
		height: 2px;
		background: #007DFF;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu_parent::after {
		transform: rotate(90deg)
}
.menu_parent.isOpen::before {
		transform: rotate(180deg)
}
.menu_parent.isOpen::after {
		opacity: 0
}
.desktop_global ul li a {
		color: #00234B;
		text-decoration: none;
		display: inline-block;
		padding: 0 10px;
}
.menu_parent .subnav {
		z-index: 500;
		overflow: hidden;
		position: absolute;
		width: 260px;
		visibility: hidden;
		top: 80px;
		left: -15px;
		pointer-events: none;
		transition: left 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.menu_parent .subnav.isOpen {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		left: 0;
}
.menu_parent .subnav.company {
		width: 220px;
}
.subnav_in {
		background: #fff;
		box-sizing: border-box;
		padding: 20px;
		margin-top: 20px;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}
.subnav ul {
		display: block
}
.subnav ul li {
		font-size: 15px;
		margin-left: 0;
		margin-bottom: 18px;
		height: auto;
		position: relative;
		transform: translateX(-20px);
		opacity: 0;
		transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.4s;
}
.subnav.isOpen ul li {
		transform: translateX(0px);
		opacity: 1;
}
.subnav ul li:nth-child(2) {
		transition-delay: 0.015s;
}
.subnav ul li:nth-child(3) {
		transition-delay: 0.03s;
}
.subnav ul li:nth-child(4) {
		transition-delay: 0.045s;
}
.subnav ul li:nth-child(5) {
		transition-delay: 0.06s;
}
.subnav ul li:nth-child(6) {
		transition-delay: 0.075s;
}
.subnav ul li:nth-child(7) {
		transition-delay: 0.09s;
}
.subnav ul li:nth-child(8) {
		transition-delay: 0.105s;
}
.subnav ul li:nth-child(9) {
		transition-delay: 0.12s;
}
.subnav ul li:nth-child(10) {
		transition-delay: 0.135s;
}
.subnav ul li:last-child {
		margin-bottom: 0;
}
.subnav ul li a {
		position: relative;
		height: auto;
		display: inline;
		padding: 0 !important
}
.header_btn {
		font-size: 15px;
		width: 170px;
		margin-left: 25px;
		font-weight: 500;
}
.header_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		height: 44px;
		background: #003F86;
		border: 1px solid #003F86;
		color: #fff;
		box-sizing: border-box;
		transition: background 0.2s;
}
.header_btn span {
		display: inline-block;
		padding-right: 34px;
		position: relative;
		transform: translateY(0.5px)
}
.header_btn span::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 0;
		width: 22px;
		height: 15px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 22px;
		background-image: url("../images/icon_mail_wht.png")
}
@media (hover: hover) {
		.header_btn a:hover {
				background: #fff;
				color: #003F86;
		}
		.header_btn a:hover span::after {
				background-image: url("../images/icon_mail_nvy.png")
		}
}
@media(max-width: 1500px) {
		.desktop_global ul li {
				height: 70px
		}
}
@media(max-width: 1200px) {
		.desktop_global ul li {
				font-size: 14px;
				margin-left: 20px;
		}
		.desktop_global ul li a {
				padding: 0 5px;
		}
		.header_btn {
				font-size: 14px;
				width: 150px;
				margin-left: 10px;
		}
		.header_btn a {
				height: 40px;
		}
}
@media(max-width: 960px) {
		header {
				background: #fff;
		}
		.desktop_global {
				display: none
		}
}
@media(max-width: 767px) {
		header {
				height: 60px;
				box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
				background: #fff;
		}
		.header_inner {
				padding: 0 20px;
		}
		.header_logo {
				width: 74px;
		}
}
/* ============== */
main {
		margin-top: 86px;
}
#toppage main {
		margin-top: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
		#toppage main {
				margin-top: 90px;
		}
}
/* ============== */
footer {
		background: linear-gradient(#052753 0%, #063677 100%);
		padding: 70px 40px 90px;
		color: #fff;
		font-size: 14px;
		position: relative;
}
footer a {
		color: #fff;
		text-decoration: none;
}
footer .pagetop {
		position: absolute;
		right: 0;
		bottom: 0;
		background: #fff;
		cursor: pointer;
		width: 70px;
		height: 70px;
}
footer .pagetop a {
		text-decoration: none;
		display: block;
		position: relative;
		width: 70px;
		height: 70px;
}
footer .pagetop a::after {
		content: '';
		display: block;
		position: absolute;
		top: 29px;
		left: 25px;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
		border-bottom: 12px solid #001c42;
		border-top: 0;
}
.footer_inner, .footer_bottom {
		max-width: 1250px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
}
.footer_inner {
		margin-bottom: 100px;
}
.footer_logo {
		width: 308px;
		margin-bottom: 50px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_left p {
		line-height: 1.8;
}
.footer_left p.tel {
		margin-top: 50px;
		padding-left: 22px;
		position: relative;
		font-weight: 600;
}
.footer_left p.tel::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 10px);
		left: 0;
		width: 16px;
		height: 20px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url("../images/icon_tel_wht.png")
}
.footer_right {
		display: flex;
}
.footer_col {
		margin-right: 50px;
}
.footer_right .footer_col:last-child {
		margin-right: 0;
}
.footer_col h4 {
		font-size: 16px;
		font-weight: 500;
		margin: 0 0 20px;
}
.footer_col ul {
		margin-left: 1em;
}
.footer_col li {
		list-style: none;
		margin: 0 0 17px;
		position: relative;
}
.footer_col li::before {
		content: '-';
		display: block;
		position: absolute;
		top: 0;
		left: -1em;
}
.footer_bottom ul {
		list-style: none;
		display: flex;
		align-items: center;
}
.footer_bottom ul li:first-child {
		margin-right: 26px;
		position: relative;
}
.footer_bottom ul li:first-child::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: -13px;
		width: 1px;
		height: 12px;
		background: #fff;
}
/* =============== */
.underL {
		position: relative;
}
.underL::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #00234B;
		transform-origin: left center;
		transform: scaleX(0);
}
.underL.bgWht::after {
		background: #fff;
}
.underL.bgNvy::after {
		background: #00234B;
}
@media (hover: hover) {
		a:hover .underL::after {
				animation: underOn 0.7s linear forwards;
		}
}
@keyframes underOn {
		0% {
				transform: scaleX(0);
				transform-origin: left center;
				opacity: 0;
		}
		25% {
				transform: scaleX(0.7);
				transform-origin: left center;
		}
		30% {
				transform: scaleX(0.3);
				transform-origin: right center;
				opacity: 1;
		}
		50% {
				transform: scaleX(0);
				transform-origin: right center;
				opacity: 1;
		}
		60% {
				transform: scaleX(0);
				transform-origin: left center;
				opacity: 0;
		}
		100% {
				transform: scaleX(1);
				transform-origin: left center;
				opacity: 1;
		}
}
@media(max-width: 1200px) {
		.footer_logo {
				width: 240px;
				margin-bottom: 30px;
		}
		.footer_col {
				margin-right: 40px;
		}
}
@media(max-width: 1100px) {
		.footer_left {
				width: 230px;
		}
		.footer_logo {
				width: 200px;
				margin-bottom: 30px;
		}
		.footer_right {
				display: flex;
				flex-wrap: wrap;
				width: calc(100% - 400px);
		}
		.footer_col {
				margin: 0 0 20px;
				width: 50%;
		}
}
@media(max-width: 960px) {
		footer {
				padding: 60px 30px 90px;
		}
		.footer_right {
				width: 440px;
		}
}
.acc_hd, .sp_footer {
		display: none
}
@media screen and (orientation: portrait) and (max-width: 767px) {
		footer {
				padding: 30px 20px 20px;
		}
		.footer_inner {
				display: flex;
				flex-direction: column-reverse;
				padding-bottom: 30px;
				margin-bottom: 0;
		}
		.footer_right {
				display: block;
				width: auto;
		}
		.footer_col {
				margin: 0;
				width: auto;
		}
		.footer_col:not(.last) h4 {
				display: none
		}
		.acc_hd {
				display: block;
				cursor: pointer;
				position: relative;
				font-size: 16px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		}
		.acc_hd.isOpen {
				border-bottom: 1px solid rgba(255, 255, 255, 0);
		}
		.acc_hd span {
				display: block;
				padding: 20px 5px 17px;
		}
		.acc_hd .acc_hd_plus {
				position: absolute;
				width: 12px;
				height: 12px;
				right: 10px;
				top: calc(50% - 6px);
		}
		.acc_hd_plus::before, .acc_hd_plus::after {
				content: '';
				display: block;
				position: absolute;
				top: 5px;
				left: 0;
				width: 12px;
				height: 2px;
				background: #fff;
				transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		}
		.acc_hd_plus::after {
				transform: rotate(90deg)
		}
		.isOpen .acc_hd_plus::before {
				transform: rotate(180deg)
		}
		.isOpen .acc_hd_plus::after {
				opacity: 0
		}
		.acc_cont {
				transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
		}
		.acc_cont.isClose {
				height: 0;
				overflow: hidden;
		}
		.acc_cont.isOpen {
				height: auto;
				overflow: visible;
				padding: 10px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		}
		.footer_col.last h4 {
				font-size: 16px;
				margin: 0;
		}
		.footer_col.last h4 a {
				display: block;
				padding: 20px 5px 17px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		}
		.footer_col ul.sp_footer {
				display: block;
				padding-top: 40px;
		}
		.footer_col ul.sp_footer li:first-child {
				margin: 0 0 15px;
		}
		.footer_left {
				width: auto;
				padding-top: 40px;
		}
		.footer_left p.tel {
				margin-top: 1em;
		}
		.footer_bottom {
				display: flex;
				flex-direction: column-reverse;
		}
		.copyright {
				margin-top: 30px;
				font-size: 12px;
		}
		footer .pagetop {
				width: 50px;
				height: 50px;
		}
		footer .pagetop a {
				width: 50px;
				height: 50px;
		}
		footer .pagetop a::after {
				content: '';
				display: block;
				position: absolute;
				top: 20px;
				left: 17px;
				width: 0;
				height: 0;
				border-style: solid;
				border-right: 8px solid transparent;
				border-left: 8px solid transparent;
				border-bottom: 9px solid #001c42;
				border-top: 0;
		}
}
/* ============= */
/* ================ */
@media(min-width: 961px) {
		.sp_nav {
				display: none;
		}
		.navBoard {
				display: none !important;
		}
}
.sp_nav, .sp_nav_trigger, .sp_nav_trigger::after {
		width: 75px;
		height: 75px
}
.sp_nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 7000;
		background: linear-gradient(#052753 0%, #063677 100%);
}
.sp_nav_trigger {
		background: none;
		border: none;
		cursor: pointer;
		display: inline-block;
		position: relative;
}
.sp_nav_trigger.navOpen::after {
		background: #fff;
}
.sp_nav_trigger .sp_nav_trigger_bar {
		display: block;
		position: absolute;
		top: 36px;
		left: 23px;
		height: 2px;
		width: 29px;
		background: #fff;
		z-index: 2;
}
.sp_nav_trigger .sp_nav_trigger_bar:first-child, .sp_nav_trigger .sp_nav_trigger_bar:nth-child(2), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}
.sp_nav_trigger .sp_nav_trigger_bar:first-child {
		top: 30px;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(4), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(5) {
		top: 36px;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
		top: 42px;
}
@media(max-width: 767px) {
		.sp_nav, .sp_nav_trigger, .sp_nav_trigger::after {
				width: 60px;
				height: 60px
		}
		.sp_nav {
				top: 0;
				right: 0;
		}
		.sp_nav_trigger .sp_nav_trigger_bar {
				top: 29px;
				left: 16px;
				height: 1px;
				width: 28px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:first-child {
				top: 23px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(4), .sp_nav_trigger .sp_nav_trigger_bar:nth-child(5) {
				top: 29px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
				top: 35px;
		}
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(4) {
		transform: rotate(45deg);
		background: none;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(5) {
		transform: rotate(-45deg);
		background: none;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(4)::before, .sp_nav_trigger .sp_nav_trigger_bar:nth-child(5)::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #fff;
		transform: scaleX(0);
		transform-origin: right center;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(4)::before {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(5)::before {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:first-child {
		transform: translateY(7px) scaleX(0);
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(2) {
		opacity: 0;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(3) {
		transform: translateY(-7px) scaleX(0);
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(4)::before, .sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(5)::before {
		transform: scaleX(1);
}
.navBoard {
		position: fixed;
		top: 74px;
		left: 0;
		width: 100%;
		height: calc(100vh - 74px);
		z-index: 900;
		display: none;
		background: linear-gradient(#052753 0%, #063677 100%);
		box-sizing: border-box;
		padding-top: 40px;
}
.navBoard_inner {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 70vh;
		color: #fff;
}
.navBoard_inner a {
		color: #fff;
		text-decoration: none;
}
.navBoard_wrap {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap
}
.navBoard_wrap .footer_col li {
		font-size: 15px;
}
.nav_policy {
		list-style: none;
		font-size: 14px;
		margin-top: 20px;
}
.nav_policy li {
		margin: 0 0 20px
}
.navBoard_btn {
		width: 400px;
		margin: 60px auto;
}
.navBoard_btn a {
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		overflow: hidden;
		position: relative;
		box-sizing: border-box;
		border-radius: 4px;
		background: #027dff;
		color: #fff;
}
@media (hover: hover) {
		.navBoard_btn a:hover {
				color: #fff !important;
		}
}
.navBoard_btn a span {
		position: relative;
		z-index: 1;
		padding-left: 30px;
		left: -2px;
		transform: translateY(1px)
}
.navBoard_btn a span::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 10px);
		left: 0;
		width: 16px;
		height: 20px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url(../images/icon_tel_wht.png);
}
@media(max-width: 767px) {
		.pc_link {
				display: none !important
		}
		.navBoard {
				top: 60px;
				height: calc(100vh - 59px);
				height: calc(100dvh - 59px);
				padding-top: 20px;
		}
		.navBoard_inner {
				height: calc(100vh - 120px);
				height: calc(100dvh - 120px);
				overflow: auto;
				display: block;
				box-sizing: border-box;
				position: relative;
				padding-left: 20px;
				padding-right: 20px;
		}
		.navBoard_wrap {
				display: block
		}
		.navBoard_inner_menu li {
				margin: 0;
				font-size: 16px;
				font-weight: 500;
				border-bottom: 1px solid #DCE5EE;
		}
		.navBoard_inner_menu li::before {
				display: none
		}
		.navBoard_btn {
				width: 220px;
				font-size: 16px;
				font-weight: 500;
				margin: 40px auto;
		}
		.navBoard_btn a {
				height: 56px
		}
}


/* ==================== */
/* ==================== */ ::selection {
		background: #ccc;
		color: #0067E0;
}
::-moz-selection {
		background: #ccc;
		color: #0067E0;
}
::-webkit-scrollbar {
		width: 10px;
		height: 10px;
}
::-webkit-scrollbar-track {
		background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
		background-color: #003F86;
}
