@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&family=Roboto+Condensed:wght@400..900&display=swap');
* {
		margin: 0;
		padding: 0;
}
html {
		overflow-y: scroll;
}
table {
		border-collapse: collapse;
}
img {
		border: none;
		vertical-align: top;
}
body {
		color: #1F2A66;
		background-color: #fff;
		font-size: 15px;
		font-family: 'Noto Sans JP', sans-serif;
		line-height: 1;
		-webkit-text-size-adjust: 100%;
		-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
		font-weight: normal;
}
h1, h2, h3, h4, h5, p, li, dt, dd, th, td {
		font-feature-settings: "palt";
		letter-spacing: 0.07em;
}
.page_shell {
		overflow-x: clip;
}
@media(max-width: 767px) {
		.bodyLock {
				overflow: hidden
		}
}
/* ========== */
header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 80px;
		z-index: 1000
}
.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 900;
		opacity: 0;
		transition: opacity 0.4s;
		background: rgba(0, 0, 0, 0.35);
		pointer-events: none;
		box-sizing: border-box;
}
.overlay.isActive {
		opacity: 1;
}
header::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 92px;
		background: #fff;
		transform-origin: center top;
		transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
		pointer-events: none;
		opacity: 0;
}
@media(max-width: 767px) {
		header::before {
				height: 72px;
		}
}
header.isOpen::before, header.isShort::before {
		opacity: 1;
}
.header_logo {
		position: fixed;
		top: 30px;
		left: 30px;
		width: 250px;
		z-index: 5000
}
.header_logo img {
		width: 100%;
		height: auto
}
nav {
		position: fixed;
		right: 30px;
		top: 0px;
		z-index: 1000;
		display: flex;
		align-items: center;
}
nav ul {
		display: flex;
		align-items: center;
		list-style: none;
		font-weight: 500;
}
nav li {
		margin-left: 30px;
		height: 88px;
		display: flex;
		align-items: center;
}
nav li a {
		color: #1F2A66;
		text-decoration: none;
}
.menu_parent {
		position: relative;
		padding-right: 25px;
}
.menu_parent {
		position: relative;
		padding-right: 22px;
}
.menu_parent .menu_parent_trigger {
		position: absolute;
		width: 14px;
		height: 14px;
		right: 0;
		top: calc(50% - 7px);
}
.menu_parent_trigger::before, .menu_parent_trigger::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0
}
.menu_parent_trigger::before {
		background: #1F2A66;
		width: 14px;
		height: 14px;
		transition: background 0.2s;
		border-radius: 50%;
}
.menu_parent::before, .menu_parent::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 1px);
		right: 4px;
		width: 6px;
		height: 1px;
		background: #fff;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 10
}
.menu_parent::after {
		transform: rotate(90deg)
}
.menu_parent.isOpen .menu_parent_trigger::before {
		background: #0069E9;
}
.menu_parent.isOpen::after {
		opacity: 0
}
.menu_parent .subnav {
		z-index: 1000;
		overflow: hidden;
		position: absolute;
		width: 270px;
		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;
}
.subnav_in {
		background: #fff;
		box-sizing: border-box;
		padding: 20px;
		margin-top: 35px;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
		border-radius: 30px;
}
.subnav ul {
		display: block !important
}
.subnav ul li {
		display: block !important;
		font-size: 14px;
		margin-left: 0;
		height: auto !important;
		position: relative;
		transform: translateX(-20px);
		opacity: 0;
		transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.4s;
		border-bottom: 1px solid #EBEBEB;
		letter-spacing: 0.03em;
}
.subnav ul li:last-child {
		border-bottom: none;
}
.subnav ul li a {
		padding: 15px 5px !important;
		display: block;
		position: relative;
}
.subnav ul li a .sub_arw {
		position: absolute;
		right: 5px;
		top: calc(50% - 11px);
		width: 22px;
		height: 22px;
		background-color: #1F2A66;
		border: 1px solid #1F2A66;
		border-radius: 6px;
		transition: background 0.2s;
		overflow: hidden;
		box-sizing: border-box
}
.sub_arw::before, .sub_arw::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 22px;
		height: 22px;
}
.sub_arw::before {
		background: #fff;
		border-radius: 6px;
		transform-origin: left center;
		transform: scaleX(0);
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sub_arw::after {
		top: -1px;
		left: -1px;
		width: 22px;
		height: 22px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 22px;
		background-image: url("../images/subnav_arw_wht.png")
}
@media (hover: hover) {
		nav li a:hover {
				color: #0069E9;
		}
		.subnav ul li a:hover {
				color: #0069E9;
		}
		.subnav ul li a:hover .sub_arw {
				background: #fff;
		}
		.subnav ul li a:hover .sub_arw::before {
				transform: scaleX(1);
		}
		.subnav ul li a:hover .sub_arw::after {
				background-image: url("../images/subnav_arw_blu.png")
		}
		.subnav ul li a:hover .sub_arw {
				background-color: #0069E9;
				border: 1px solid #0069E9;
		}
}
.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;
}
.header_btn_gr {
		margin-left: 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 390px;
}
@media(max-width: 1100px) {
		.header_logo {
				width: 200px;
		}
		nav li {
				margin-left: 15px;
				font-size: 14px;
		}
		.header_btn_gr {
				margin-left: 15px;
		}
}
@media(max-width: 960px) {
		nav {
				display: none
		}
}
@media(max-width: 767px) {
		.header_logo {
				width: 184px;
				top: 28px;
				left: 20px
		}
}
@media(min-width: 961px) {
		.sp_nav, .navBoard {
				display: none !important
		}
}
.sp_nav, .sp_nav_trigger, .sp_nav_trigger::after {
		width: 58px;
		height: 58px;
		box-sizing: border-box;
}
.sp_nav {
		position: fixed;
		top: 15px;
		right: 20px;
		z-index: 7000;
}
.sp_nav_trigger {
		background: #005BE4;
		cursor: pointer;
		display: inline-block;
		position: relative;
		border: none;
		border-radius: 50%;
		box-sizing: border-box;
		transition: background 0.2s;
}
.sp_nav_trigger.navOpen {
		background: #fff;
}
.sp_nav_trigger .sp_nav_trigger_bar {
		display: block;
		position: absolute;
		top: 28.5px;
		left: 19px;
		height: 1px;
		width: 20px;
		background: #fff;
		z-index: 2;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(1)::after, .sp_nav_trigger .sp_nav_trigger_bar:nth-child(3)::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 20px;
		height: 1px;
		background: none;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		transform: scaleX(0)
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(1)::after {
		transform-origin: right center;
		transition-delay: 0.1s;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3)::after {
		transform-origin: left center;
		transition-delay: 0.28s;
}
.sp_nav_trigger .sp_nav_trigger_bar:first-child {
		top: 22.5px;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2) {
		top: 28.5px;
}
.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
		top: 34.5px;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:first-child {
		transform: translateY(6px) rotate(-45deg);
		background: none;
}
.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(-6px) rotate(45deg);
		background: none;
}
.sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(1)::after, .sp_nav_trigger.navOpen .sp_nav_trigger_bar:nth-child(3)::after {
		transform: scaleX(1);
		background: #1F2A66;
}
.navBoard {
		position: fixed;
		top: 0;
		right: 0;
		width: calc(100% - 40px);
		height: calc(100vh - 30px);
		height: calc(100dvh - 30px);
		z-index: 6000;
		display: none;
		background: #005BE4;
		border-radius: 0px 0px 0px 70px;
		transition: right 0.9s cubic-bezier(0.16, 1, 0.3, 1);
		right: -100vw;
}
.navBoard.isVisible {
		right: 0
}
.navBoard_inner {
		padding: 120px 30px 60px 40px;
		box-sizing: border-box;
		height: calc(100vh - 90px);
		height: calc(100dvh - 90px);
		overflow: auto;
}
.navBoard_wrap, .navBoard_wrap ul {
		width: 100%;
}
.navBoard_wrap li {
		margin: 0;
		font-size: 15px;
		font-weight: 500;
		list-style: none;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.navBoard_wrap li li {
		font-weight: 400;
		border: none;
		font-size: 14px;
}
.navBoard_wrap li a {
		display: block;
		padding: 25px 0;
		position: relative;
		color: #fff;
		text-decoration: none;
}
.navBoard_wrap li li a {
		padding: 10px 0;
}
.navBoard_wrap li a::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 3px;
		width: 16px;
		height: 16px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url("../images/nav_arw_sp.png");
		border-radius: 50%;
}
.navBoard_wrap li li a::after {
		display: none
}
.sub_parent > span {
		display: block;
		padding: 20px 0;
		cursor: pointer;
		position: relative;
		color: #fff;
}
.sub_parent > span::before, .sub_parent > span::after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 6px;
		width: 11px;
		height: 2px;
		background: #fff;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sub_parent > span::before {
		transform: rotate(90deg);
}
.sub_parent.isOpen > span::before {
		transform: rotate(180deg);
}
.sub_parent.isOpen > span::after {
		opacity: 0
}
.navBoard_inner_menu li::before {
		display: none
}
.sub_cont ul {
		padding: 20px 0 30px;
}
.navBoard_inner_menu li li {
		margin-left: 0;
		margin: 0 0 15px;
		font-weight: 500;
		font-size: 15px;
		border: none;
}
.navBoard_inner_menu li li a {
		position: relative;
		padding: 5px 0;
}
.sub_cont {
		transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.sub_cont.isClose {
		height: 0;
		overflow: hidden;
}
.sub_cont.isOpen {
		height: auto;
		overflow: visible;
}
.navBoard_wrap .header_btn_gr {
		width: 100%;
		margin: 0;
		padding-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		display: flex;
		justify-content: center;
}
.navBoard_wrap .header_btn {
		width: 100%;
		font-size: 14px;
}
.navBoard_wrap .header_btn a {
		background: #fff;
		color: #005BE4;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 60px;
		text-decoration: none;
}
.navBoard_wrap .header_btn span {
		position: relative;
		left: -10px;
}
.navBoard_wrap .header_btn span::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		right: -25px;
		width: 13px;
		height: 13px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-image: url(../images/icon_blank_blu_s.png);
		background-size: 13px;
}
@media(max-width: 767px) {
		.sp_nav, .sp_nav_trigger, .sp_nav_trigger::after {
				width: 46px;
				height: 46px;
		}
		.sp_nav {
				top: 13px;
				right: 15px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar {
				top: 22.5px;
				left: 14px;
				height: 1px;
				width: 18px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(1)::after, .sp_nav_trigger .sp_nav_trigger_bar:nth-child(3)::after {
				width: 18px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:first-child {
				top: 16.5px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2) {
				top: 22.5px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(3) {
				top: 28.5px;
		}
}
@media(max-width: 375px) {
		.navBoard_wrap li {
				font-size: 15px;
		}
		.navBoard_wrap li li {
				font-size: 13px;
		}
		.navBoard_wrap li a, .sub_parent > span {
				padding: 15px 0;
		}
		.navBoard_wrap li li a {
				padding: 5px 0;
		}
		.sub_cont ul {
				padding: 15px 0 20px;
		}
}
/* ============== */
footer {
		background: #005BE4;
		border-radius: 60px 60px 0px 0px;
		min-height: 400px;
		color: #fff;
		padding: 65px 40px 20px;
		position: relative;
		z-index: 2;
}
footer a {
		color: #fff;
		text-decoration: none;
}
footer ul {
		list-style: none
}
.footer_inner, .footer_bottom {
		max-width: 1280px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
}
.footer_inner {
		margin-bottom: 80px;
}
.footer_left h4 {
		font-size: 16px;
		font-weight: 600;
		margin: 00 0 20px;
}
.footer_left p {
		line-height: 1.8;
}
.footer_right {
		display: flex;
}
.footer_logo {
		width: 290px;
		margin: 0 0 40px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_right .footer_col:nth-child(2) {
		margin-left: 75px;
}
.footer_col li {
		font-size: 14px;
		margin-bottom: 70px;
		font-weight: 400;
}
.footer_col .en {
		font-size: 30px;
		font-family: "Roboto Condensed";
		font-weight: 600;
		letter-spacing: 0;
		line-height: 1;
		margin: 0 0 10px;
}
.footer_col a span {
		color: rgba(255, 255, 255, 0.8);
}
@media (hover: hover) {
		.footer_col a:hover span {
				color: rgba(255, 255, 255, 1);
		}
}
.footer_bottom ul {
		display: flex;
		align-items: center;
}
.footer_bottom li {
		margin-left: 35px;
		position: relative;
		font-size: 13px;
}
.footer_bottom li::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 7px);
		right: -17px;
		width: 1px;
		height: 14px;
		background: #fff;
}
.footer_bottom li:first-child {
		margin-left: 0;
}
.footer_bottom li:last-child::after {
		display: none
}
.copyright {
		font-size: 11px;
		color: rgba(255, 255, 255, 0.5);
}
@media(max-width: 1250px) {
		.footer_logo {
				margin: 0 0 30px;
		}
		.footer_left h4 {
				font-size: 15px;
				margin-bottom: 15px;
		}
		.footer_left p {
				font-size: 14px;
		}
		.footer_col li {
				font-size: 13px;
		}
}
@media(max-width: 960px) {
		footer {
				padding: 60px 40px 40px;
		}
		.footer_inner {
				margin-bottom: 60px;
		}
		.footer_logo {
				width: 260px;
				margin: 0 0 25px;
		}
		.footer_right .footer_col:nth-child(2) {
				margin-left: 40px;
		}
		.footer_col .en {
				font-size: 26px;
		}
		.footer_bottom {
				display: block;
		}
		.copyright {
				text-align: right;
		}
}
@media(max-width: 600px) {
		footer {
				padding: 65px 20px 40px;
				border-radius: 30px 30px 0px 0px;
		}
		.footer_inner {
				margin-bottom: 30px;
				display: block
		}
		.footer_left {
				margin-bottom: 60px;
		}
		.footer_right {
				display: flex;
				flex-wrap: wrap;
		}
		.footer_right .footer_col:nth-child(2) {
				margin-left: 50px;
		}
		.footer_col li {
				margin-bottom: 50px;
		}
		.footer_bottom ul {
				display: block;
				margin: 0 0 60px;
				text-align: center;
		}
		.footer_bottom li {
				text-align: center;
				margin: 0 0 15px
		}
		.footer_bottom li::after {
				display: none
		}
		.copyright {
				text-align: center;
		}
}
@media(max-width: 375px) {
		.footer_col li {
				font-size: 12px;
		}
}
/* ==================== */
/* ==================== */ ::selection {
		background: #d6ecfc;
		color: #005be4;
}
::-moz-selection {
		background: #d6ecfc;
		color: #005be4;
}
::-webkit-scrollbar {
		width: 10px;
		height: 10px;
}
::-webkit-scrollbar-track {
		background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
		background-color: #005be4;
}